Enumerationswift 6.0.1Swift
UnicodeDecodingResult
The result of one Unicode decoding step.
@frozen enum UnicodeDecodingResult
Each UnicodeDecodingResult
instance can represent a Unicode scalar value, an indication that no more Unicode scalars are available, or an indication of a decoding error.
Cases
case emptyInput
An indication that no more Unicode scalars are available in the input.
case error
An indication of a decoding error.
case scalarValue(Unicode.Scalar)
A decoded Unicode scalar value.
Citizens in Swift
Conformances
protocol BitwiseCopyable
protocol Equatable
A type that can be compared for value equality.
protocol Sendable
Type members
Type features
static func != (lhs: Self, rhs: Self
) -> Bool Returns a Boolean value indicating whether two values are not equal.