Int8

struct Int8

An 8-bit signed integer value type.

Inheritance BitwiseOperations, CVarArg, Comparable, CustomPlaygroundQuickLookable, CustomReflectable, CustomStringConvertible, Equatable, ExpressibleByIntegerLiteral, Hashable, Integer, IntegerArithmetic, SignedInteger, SignedNumber, Strideable, _Incrementable, _Integer, _IntegerArithmetic, _SignedInteger View Protocol Hierarchy →
Import import Swift

Initializers

init()

Create an instance initialized to zero.

Declaration

init()
init(_: Double)

Creates a new instance by rounding the given floating-point value toward zero.

other: A floating-point value. When other is rounded toward zero, the result must be within the range Int8.min...Int8.max.

Declaration

init(_ value: Double)
init(_: Float)

Creates a new instance by rounding the given floating-point value toward zero.

other: A floating-point value. When other is rounded toward zero, the result must be within the range Int8.min...Int8.max.

Declaration

init(_ value: Float)
init(_: Float80)

Creates a new instance by rounding the given floating-point value toward zero.

other: A floating-point value. When other is rounded toward zero, the result must be within the range Int8.min...Int8.max.

Declaration

init(_ value: Float80)
init(_: Int)

Declaration

init(_ value: Int)
init(_: Int8)

Declaration

init(_ value: Int8)
init(_: Int16)

Declaration

init(_ value: Int16)
init(_: Int32)

Declaration

init(_ value: Int32)
init(_: Int64)

Convert from Swift's widest signed integer type, trapping on overflow.

Declaration

init(_ value: Int64)
init(_: UInt)

Declaration

init(_ value: UInt)
init(_: UInt8)

Declaration

init(_ value: UInt8)
init(_: UInt16)

Declaration

init(_ value: UInt16)
init(_: UInt32)

Declaration

init(_ value: UInt32)
init(_: UInt64)

Declaration

init(_ value: UInt64)
init(bitPattern:)

Construct a Int8 having the same memory representation as the UInt8 bitPattern. No range or overflow checking occurs, and the resulting Int8 may not have the same numeric value as bitPattern--it is only guaranteed to use the same pattern of bits.

Declaration

init(bitPattern: UInt8)
init(integerLiteral:)

Create an instance initialized to value.

Declaration

init(integerLiteral value: Int8)

Declared In

Int8 , ExpressibleByIntegerLiteral
init(truncatingBitPattern: Int)

Construct a Int8 having the same bitwise representation as the least significant bits of the provided bit pattern.

No range or overflow checking occurs.

Declaration

init(truncatingBitPattern: Int)
init(truncatingBitPattern: Int16)

Construct a Int8 having the same bitwise representation as the least significant bits of the provided bit pattern.

No range or overflow checking occurs.

Declaration

init(truncatingBitPattern: Int16)
init(truncatingBitPattern: Int32)

Construct a Int8 having the same bitwise representation as the least significant bits of the provided bit pattern.

No range or overflow checking occurs.

Declaration

init(truncatingBitPattern: Int32)
init(truncatingBitPattern: Int64)

Construct a Int8 having the same bitwise representation as the least significant bits of the provided bit pattern.

No range or overflow checking occurs.

Declaration

init(truncatingBitPattern: Int64)
init(truncatingBitPattern: UInt)

Construct a Int8 having the same bitwise representation as the least significant bits of the provided bit pattern.

No range or overflow checking occurs.

Declaration

init(truncatingBitPattern: UInt)
init(truncatingBitPattern: UInt16)

Construct a Int8 having the same bitwise representation as the least significant bits of the provided bit pattern.

No range or overflow checking occurs.

Declaration

init(truncatingBitPattern: UInt16)
init(truncatingBitPattern: UInt32)

Construct a Int8 having the same bitwise representation as the least significant bits of the provided bit pattern.

No range or overflow checking occurs.

Declaration

init(truncatingBitPattern: UInt32)
init(truncatingBitPattern: UInt64)

Construct a Int8 having the same bitwise representation as the least significant bits of the provided bit pattern.

No range or overflow checking occurs.

Declaration

init(truncatingBitPattern: UInt64)
init?(_:radix:)

Construct from an ASCII representation in the given radix.

If text does not match the regular expression "[+-]?[0-9a-zA-Z]+", or the value it denotes in the given radix is not representable, the result is nil.

Declaration

init?(_ text: String, radix: Int = default)
init?(exactly: Double)

Creates a Int8 whose value is value if no rounding is necessary, nil otherwise.

Declaration

init?(exactly value: Double)
init?(exactly: Float)

Creates a Int8 whose value is value if no rounding is necessary, nil otherwise.

Declaration

init?(exactly value: Float)
init?(exactly: Float80)

Creates a Int8 whose value is value if no rounding is necessary, nil otherwise.

Declaration

init?(exactly value: Float80)
init?(exactly: Int)

Declaration

init?(exactly value: Int)
init?(exactly: Int8)

Declaration

init?(exactly value: Int8)
init?(exactly: Int16)

Declaration

init?(exactly value: Int16)
init?(exactly: Int32)

Declaration

init?(exactly value: Int32)
init?(exactly: Int64)

Declaration

init?(exactly value: Int64)
init?(exactly: UInt)

Declaration

init?(exactly value: UInt)
init?(exactly: UInt8)

Declaration

init?(exactly value: UInt8)
init?(exactly: UInt16)

Declaration

init?(exactly value: UInt16)
init?(exactly: UInt32)

Declaration

init?(exactly value: UInt32)
init?(exactly: UInt64)

Declaration

init?(exactly value: UInt64)

Static Variables

static var allZeros: Int8

The empty bitset of type Int8.

Declaration

static var allZeros: Int8 { get }
static var max: Int8

Declaration

static var max: Int8 { get }
static var min: Int8

Declaration

static var min: Int8 { get }

Instance Variables

var customMirror: Mirror

A mirror that reflects the Int8 instance.

Declaration

var customMirror: Mirror { get }
var customPlaygroundQuickLook: PlaygroundQuickLook

A custom playground Quick Look for this instance.

If this type has value semantics, the PlaygroundQuickLook instance should be unaffected by subsequent mutations.

Declaration

var customPlaygroundQuickLook: PlaygroundQuickLook { get }
var description: String

A textual representation of self.

Declaration

var description: String { get }
var hashValue: Int

The hash value.

Axiom: x == y implies x.hashValue == y.hashValue.

Note: The hash value is not guaranteed to be stable across different invocations of the same program. Do not persist the hash value across program runs.

Declaration

var hashValue: Int { get }

Static Methods

static func addWithOverflow(_:_:)

Add lhs and rhs, returning a result and a Bool that is true iff the operation caused an arithmetic overflow.

Declaration

static func addWithOverflow(_ lhs: Int8, _ rhs: Int8) -> (Int8, overflow: Bool)
static func divideWithOverflow(_:_:)

Divide lhs and rhs, returning a result and a Bool that is true iff the operation caused an arithmetic overflow.

Declaration

static func divideWithOverflow(_ lhs: Int8, _ rhs: Int8) -> (Int8, overflow: Bool)
static func multiplyWithOverflow(_:_:)

Multiply lhs and rhs, returning a result and a Bool that is true iff the operation caused an arithmetic overflow.

Declaration

static func multiplyWithOverflow(_ lhs: Int8, _ rhs: Int8) -> (Int8, overflow: Bool)
static func remainderWithOverflow(_:_:)

Divide lhs and rhs, returning the remainder and a Bool that is true iff the operation caused an arithmetic overflow.

Declaration

static func remainderWithOverflow(_ lhs: Int8, _ rhs: Int8) -> (Int8, overflow: Bool)
static func subtractWithOverflow(_:_:)

Subtract lhs and rhs, returning a result and a Bool that is true iff the operation caused an arithmetic overflow.

Declaration

static func subtractWithOverflow(_ lhs: Int8, _ rhs: Int8) -> (Int8, overflow: Bool)

Instance Methods

func advanced(by:)

Returns a Self x such that self.distance(to: x) approximates n.

If Stride conforms to Integer, then self.distance(to: x) == n.

Complexity: O(1).

Declaration

func advanced(by n: Int) -> Int8

Declared In

SignedInteger
func distance(to:)

Returns a stride x such that self.advanced(by: x) approximates other.

If Stride conforms to Integer, then self.advanced(by: x) == other.

Complexity: O(1).

Declaration

func distance(to other: Int8) -> Int

Declared In

SignedInteger
func toIntMax()

Represent this number using Swift's widest native signed integer type.

Declaration

func toIntMax() -> IntMax