enum FieldType
extension FieldType : Equatable, Sendable
The possible value types for a field.
-
Undocumented
Declaration
Swift
case unknown
-
Undocumented
Declaration
Swift
case bool
-
Undocumented
Declaration
Swift
case uint8
-
Undocumented
Declaration
Swift
case uint16
-
Undocumented
Declaration
Swift
case uint32
-
Undocumented
Declaration
Swift
case uint64
-
Undocumented
Declaration
Swift
case int8
-
Undocumented
Declaration
Swift
case int16
-
Undocumented
Declaration
Swift
case int32
-
Undocumented
Declaration
Swift
case int64
-
Undocumented
Declaration
Swift
case float
-
Undocumented
Declaration
Swift
case double
-
Undocumented
Declaration
Swift
case string
-
Undocumented
Declaration
Swift
case data
-
Undocumented
Declaration
Swift
case `enum`(any Enum.Type)
-
Undocumented
Declaration
Swift
case bitmap(any Bitmap.Type)
-
Undocumented
Declaration
Swift
case `struct`(any StructDataRepresentable.Type)
-
Undocumented
Declaration
Swift
case dynamic(any Any.Type)
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
static func == (lhs: FieldType, rhs: FieldType) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.