UInt8
Represents an 8-bit unsigned integer. This is equivilent to a 'char' or 'byte' type in terms of the amount of memory it refers to.
Initializers
Methods
Static Methods
public static func +(lhs: UInt8, rhs: UInt8) -> UInt8public static func -(lhs: UInt8, rhs: UInt8) -> UInt8public static func *(lhs: UInt8, rhs: UInt8) -> UInt8public static func /(lhs: UInt8, rhs: UInt8) -> Doublepublic static func \(lhs: UInt8, rhs: UInt8) -> UInt8public static func %(lhs: UInt8, rhs: UInt8) -> UInt8public static func &(lhs: UInt8, rhs: UInt8) -> UInt8public static func |(lhs: UInt8, rhs: UInt8) -> UInt8public static func ^(lhs: UInt8, rhs: UInt8) -> UInt8public static func ==(lhs: UInt8, rhs: UInt8) -> Boolpublic static func !=(lhs: UInt8, rhs: UInt8) -> Boolpublic static func >=(lhs: UInt8, rhs: UInt8) -> Boolpublic static func <=(lhs: UInt8, rhs: UInt8) -> Boolpublic static func >(lhs: UInt8, rhs: UInt8) -> Boolpublic static func <(lhs: UInt8, rhs: UInt8) -> Boolpublic static func <<(lhs: UInt8, rhs: UInt8) -> UInt8public static func >>(lhs: UInt8, rhs: UInt8) -> UInt8public static func >>>(lhs: UInt8, rhs: UInt8) -> UInt8public static func ~(expression: UInt8) -> UInt8public static func -(expression: UInt8) -> UInt8public static func random(from: UInt8, to: UInt8) -> UInt8Generates random number in range [from, to)