We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d43b9f commit 197b3c9Copy full SHA for 197b3c9
Source/Aliases.swift
@@ -4,6 +4,7 @@
4
public typealias Int = Int64
5
public typealias UInt = UInt64
6
#elseif ISLAND
7
+#if !macos && !iOS
8
#if CPU64
9
10
@@ -14,6 +15,7 @@
14
15
#hint Unexpected bitness
16
17
18
+#endif
19
#endif
20
#elseif COCOA
21
public typealias Int = NSInteger
@@ -25,8 +27,9 @@ public typealias UInt8 = Byte
25
27
public typealias IntMax = Int64
26
28
public typealias UIntMax = UInt64
29
30
+#if ISLAND && !macos && !iOS
31
public typealias Bool = Boolean
-
32
33
public typealias UnicodeScalar = UTF32Char
34
public typealias UTF16Char = Char // UInt16
35
public typealias UTF32Char = UInt32
0 commit comments