trailingZeroBitCount
var trailingZeroBitCount: Int { get }var trailingZeroBitCount: Int { get }import Swift@frozen struct Int32A 32-bit signed integer value type.
@frozen struct IntA signed 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(bitPattern x: UInt32) 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: Int32 { get }var customMirror: Mirror { get }A mirror that reflects the Int32 instance.
var leadingZeroBitCount: Int { get }var magnitude: UInt32 { get }var nonzeroBitCount: Int { get }var words: Int32.Words { get }static func != (lhs: Int32, rhs: Int32) -> Bool static func % (lhs: Int32, rhs: Int32) -> Int32 static func %= (lhs: inout Int32, rhs: Int32) static func & (lhs: Int32, rhs: Int32) -> Int32 static func &<< (lhs: Int32, rhs: Int32) -> Int32 static func &<<= (lhs: inout Int32, rhs: Int32) static func &= (lhs: inout Int32, rhs: Int32) static func &>> (lhs: Int32, rhs: Int32) -> Int32 static func &>>= (lhs: inout Int32, rhs: Int32) static func * (lhs: Int32, rhs: Int32) -> Int32 static func *= (lhs: inout Int32, rhs: Int32) static func + (lhs: Int32, rhs: Int32) -> Int32 static func += (lhs: inout Int32, rhs: Int32) static func - (lhs: Int32, rhs: Int32) -> Int32 static func -= (lhs: inout Int32, rhs: Int32) static func / (lhs: Int32, rhs: Int32) -> Int32 static func /= (lhs: inout Int32, rhs: Int32) static func < (lhs: Int32, rhs: Int32) -> Bool static func <= (lhs: Int32, rhs: Int32) -> Bool static func == (lhs: Int32, rhs: Int32) -> Bool static func > (lhs: Int32, rhs: Int32) -> Bool static func >= (lhs: Int32, rhs: Int32) -> Bool static func ^ (lhs: Int32, rhs: Int32) -> Int32 static func ^= (lhs: inout Int32, rhs: Int32) static func | (lhs: Int32, rhs: Int32) -> Int32 static func |= (lhs: inout Int32, rhs: Int32) func addingReportingOverflow(_ other: Int32) -> (partialValue: Int32, overflow: Bool) func dividedReportingOverflow(by other: Int32) -> (partialValue: Int32, overflow: Bool) func dividingFullWidth(_ dividend: (high: Int32, low: Int32.Magnitude)) -> (quotient: Int32, remainder: Int32) 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: Int32) -> (high: Int32, low: Int32.Magnitude) func multipliedReportingOverflow(by other: Int32) -> (partialValue: Int32, overflow: Bool) func remainderReportingOverflow(dividingBy other: Int32) -> (partialValue: Int32, overflow: Bool) func signum() -> Int32 func subtractingReportingOverflow(_ other: Int32) -> (partialValue: Int32, 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 SIMD64StorageStorage for a vector of 64 integers.
@frozen struct SIMD8StorageStorage for a vector of eight integers.
@frozen struct WordsA type that represents the words of this integer.
typealias IntegerLiteralType = Int32A type that represents an integer literal.
typealias Magnitude = UInt32A type that can represent the absolute value of any possible value of this type.
typealias SIMDMaskScalar = Int32var customPlaygroundQuickLook: _PlaygroundQuickLook { get }A custom playground Quick Look for the Int32 instance.