delete_if, retain_if, rindex_of, compact, compact_count added to List.

This commit is contained in:
Christoffer Lerno
2023-04-21 12:15:35 +02:00
parent 809321e20c
commit 8059dc1539
24 changed files with 278 additions and 70 deletions

View File

@@ -1,6 +1,6 @@
module std::os::macos::cf;
$if (env::OS_TYPE == OsType.MACOS)
$if (env::os_is_darwin())
typedef CFAllocatorRef = distinct void*;
typedef CFAllocatorContextRef = distinct void*;

View File

@@ -1,6 +1,6 @@
module std::os::macos::cf;
$if (env::OS_TYPE == OsType.MACOS)
$if (env::os_is_darwin())
typedef CFArrayRef = distinct void*;
typedef CFArrayCallBacksRef = distinct void*;

View File

@@ -1,6 +1,6 @@
module std::os::macos::cf;
$if (env::OS_TYPE == OsType.MACOS)
$if (env::os_is_darwin())
typedef CFTypeRef = distinct void*;
typedef CFIndex = isz;

View File

@@ -1,6 +1,6 @@
module std::os::macos::objc;
$if (env::OS_TYPE == OsType.MACOS)
$if (env::os_is_darwin())
typedef Class = distinct void*;
typedef Method = distinct void*;