SIMD64Storage
Storage for a vector of 64 integers.
@frozen struct SIMD64StorageStorage for a vector of 64 integers.
@frozen struct SIMD64Storageimport Swift@frozen struct UInt8An 8-bit unsigned integer value type.
init(_ source: Double) Creates an integer from the given floating-point value, rounding toward zero.
init(_ source: Float) Creates an integer from the given floating-point value, rounding toward zero.
init(_ source: Float16) Creates an integer from the given floating-point value, rounding toward zero.
init(ascii v: Unicode.Scalar) Construct with value v.value.
init(bitPattern x: Int8) Creates a new instance with the same memory representation as the given value.
init?(exactly source: Double) Creates an integer from the given floating-point value, if it can be represented exactly.
init?(exactly source: Float) Creates an integer from the given floating-point value, if it can be represented exactly.
init?(exactly source: Float16) Creates an integer from the given floating-point value, if it can be represented exactly.
init(from decoder: any Decoder) throws static var bitWidth: Int { get }The number of bits used for the underlying binary representation of values of this type.
var byteSwapped: UInt8 { get }var customMirror: Mirror { get }A mirror that reflects the UInt8 instance.
var leadingZeroBitCount: Int { get }var nonzeroBitCount: Int { get }var trailingZeroBitCount: Int { get }var words: UInt8.Words { get }A collection containing the words of this value’s binary representation, in order from the least significant to most significant.
static func != (lhs: UInt8, rhs: UInt8) -> Bool static func % (lhs: UInt8, rhs: UInt8) -> UInt8 static func %= (lhs: inout UInt8, rhs: UInt8) static func & (lhs: UInt8, rhs: UInt8) -> UInt8 static func &<< (lhs: UInt8, rhs: UInt8) -> UInt8 static func &<<= (lhs: inout UInt8, rhs: UInt8) static func &= (lhs: inout UInt8, rhs: UInt8) static func &>> (lhs: UInt8, rhs: UInt8) -> UInt8 static func &>>= (lhs: inout UInt8, rhs: UInt8) static func * (lhs: UInt8, rhs: UInt8) -> UInt8 static func *= (lhs: inout UInt8, rhs: UInt8) static func + (lhs: UInt8, rhs: UInt8) -> UInt8 static func += (lhs: inout UInt8, rhs: UInt8) static func - (lhs: UInt8, rhs: UInt8) -> UInt8 static func -= (lhs: inout UInt8, rhs: UInt8) static func / (lhs: UInt8, rhs: UInt8) -> UInt8 static func /= (lhs: inout UInt8, rhs: UInt8) static func < (lhs: UInt8, rhs: UInt8) -> Bool static func <= (lhs: UInt8, rhs: UInt8) -> Bool static func == (lhs: UInt8, rhs: UInt8) -> Bool static func > (lhs: UInt8, rhs: UInt8) -> Bool static func >= (lhs: UInt8, rhs: UInt8) -> Bool static func ^ (lhs: UInt8, rhs: UInt8) -> UInt8 static func ^= (lhs: inout UInt8, rhs: UInt8) static func | (lhs: UInt8, rhs: UInt8) -> UInt8 static func |= (lhs: inout UInt8, rhs: UInt8) func addingReportingOverflow(_ other: UInt8) -> (partialValue: UInt8, overflow: Bool) func dividedReportingOverflow(by other: UInt8) -> (partialValue: UInt8, overflow: Bool) func dividingFullWidth(_ dividend: (high: UInt8, low: UInt8.Magnitude)) -> (quotient: UInt8, remainder: UInt8) Returns a tuple containing the quotient and remainder of dividing the given value by this value.
func encode(to encoder: any Encoder) throws Encodes this value into the given encoder.
func hash(into hasher: inout Hasher) Hashes the essential components of this value by feeding them into the given hasher.
func multipliedFullWidth(by other: UInt8) -> (high: UInt8, low: UInt8.Magnitude) func multipliedReportingOverflow(by other: UInt8) -> (partialValue: UInt8, overflow: Bool) func remainderReportingOverflow(dividingBy other: UInt8) -> (partialValue: UInt8, overflow: Bool) func signum() -> UInt8 func subtractingReportingOverflow(_ other: UInt8) -> (partialValue: UInt8, overflow: Bool) @frozen struct SIMD16StorageStorage for a vector of 16 integers.
@frozen struct SIMD2StorageStorage for a vector of two integers.
@frozen struct SIMD32StorageStorage for a vector of 32 integers.
@frozen struct SIMD4StorageStorage for a vector of four integers.
@frozen struct SIMD8StorageStorage for a vector of eight integers.
@frozen struct WordsA type that represents the words of this integer.
typealias IntegerLiteralType = UInt8A type that represents an integer literal.
typealias Magnitude = UInt8A type that can represent the absolute value of any possible value of this type.
typealias SIMDMaskScalar = Int8var customPlaygroundQuickLook: _PlaygroundQuickLook { get }A custom playground Quick Look for the UInt8 instance.
protocol BitwiseCopyable : ~Escapableprotocol SIMDStorageA type that can function as storage for a SIMD vector type.
protocol SendableA thread-safe type whose values can be shared across arbitrary concurrent contexts without introducing a risk of data races. Values of the type may have no shared mutable state, or they may protect that state with a lock or by forcing it to only be accessed from a specific actor.
init() var scalarCount: Int { get }subscript(index: Int) -> UInt8 { get set }