Kind

enum Kind

The storage variants of a BigUInt.

  • Value consists of the two specified words (low and high). Either or both words may be zero.

    Declaration

    Swift

    case inline(Word, Word)
  • Words are stored in a slice of the storage array.

    Declaration

    Swift

    case slice(from: Int, to: Int)
  • Words are stored in the storage array.

    Declaration

    Swift

    case array