Instance Methodswift 6.1.2Swift
dividingFullWidth(_:)
func dividingFullWidth(_ dividend: (high: Self, low: Self.Magnitude)) -> (quotient: Self, remainder: Self)
func dividingFullWidth(_ dividend: (high: Self, low: Self.Magnitude)) -> (quotient: Self, remainder: Self)
sSZss17FixedWidthIntegerRzrlE012dividingFullB0yx8quotient_x9remaindertx4high_9MagnitudeSjQz3lowt_tF
What are these?6MP9V
where Self:FixedWidthInteger
import Swift
protocol SignedInteger : BinaryInteger, SignedNumeric
An integer type that can represent both positive and negative values.
associatedtype Magnitude : Comparable, Numeric
A type that can represent the absolute value of any possible value of the conforming type.
protocol FixedWidthInteger : BinaryInteger, LosslessStringConvertible where Self.Magnitude : FixedWidthInteger, Self.Magnitude : UnsignedInteger, Self.Stride : FixedWidthInteger, Self.Stride : SignedInteger
An integer type that uses a fixed size for every instance.
init<T>(_ source: T) where T : BinaryInteger
Creates a new instance from the given integer.
init?<T>(exactly source: T) where T : BinaryInteger
static var max: Self { get }
The maximum representable integer in this type.
static var min: Self { get }
The minimum representable integer in this type.
func isMultiple(of other: Self) -> Bool