Documentation

Init.Data.UInt.Basic

@[inline]

Converts a Fin UInt8.size into the corresponding UInt8.

Equations
@[deprecated UInt8.ofBitVec (since := "2025-02-12")]
def UInt8.mk (bitVec : BitVec 8) :

Creates a UInt8 from a BitVec 8. This function is overridden with a native implementation.

Equations
@[inline, deprecated UInt8.ofNatLT (since := "2025-02-13")]
def UInt8.ofNatCore (n : Nat) (h : n < size) :

Converts a natural number to an 8-bit unsigned integer. Requires a proof that the number is small enough to be representable without overflow; it must be smaller than 2^8.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_add]
def UInt8.add (a b : UInt8) :

Adds two 8-bit unsigned integers, wrapping around on overflow. Usually accessed via the + operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_sub]
def UInt8.sub (a b : UInt8) :

Subtracts one 8-bit unsigned integer from another, wrapping around on underflow. Usually accessed via the - operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_mul]
def UInt8.mul (a b : UInt8) :

Multiplies two 8-bit unsigned integers, wrapping around on overflow. Usually accessed via the * operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_div]
def UInt8.div (a b : UInt8) :

Unsigned division for 8-bit unsigned integers, discarding the remainder. Usually accessed via the / operator.

This operation is sometimes called “floor division.” Division by zero is defined to be zero.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_mod]
def UInt8.mod (a b : UInt8) :

The modulo operator for 8-bit unsigned integers, which computes the remainder when dividing one integer by another. Usually accessed via the % operator.

When the divisor is 0, the result is the dividend rather than an error.

This function is overridden at runtime with an efficient implementation.

Examples:

Equations
@[deprecated UInt8.mod (since := "2024-09-23")]
def UInt8.modn (a : UInt8) (n : Nat) :
Equations
@[extern lean_uint8_land]
def UInt8.land (a b : UInt8) :

Bitwise and for 8-bit unsigned integers. Usually accessed via the &&& operator.

Each bit of the resulting integer is set if the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_lor]
def UInt8.lor (a b : UInt8) :

Bitwise or for 8-bit unsigned integers. Usually accessed via the ||| operator.

Each bit of the resulting integer is set if at least one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_xor]
def UInt8.xor (a b : UInt8) :

Bitwise exclusive or for 8-bit unsigned integers. Usually accessed via the ^^^ operator.

Each bit of the resulting integer is set if exactly one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_shift_left]

Bitwise left shift for 8-bit unsigned integers. Usually accessed via the <<< operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_shift_right]

Bitwise right shift for 8-bit unsigned integers. Usually accessed via the >>> operator.

This function is overridden at runtime with an efficient implementation.

Equations
def UInt8.lt (a b : UInt8) :

Strict inequality of 8-bit unsigned integers, defined as inequality of the corresponding natural numbers. Usually accessed via the < operator.

Equations
def UInt8.le (a b : UInt8) :

Non-strict inequality of 8-bit unsigned integers, defined as inequality of the corresponding natural numbers. Usually accessed via the operator.

Equations
Equations
Equations
Equations
Equations
Equations
instance instLTUInt8 :
Equations
instance instLEUInt8 :
Equations
@[extern lean_uint8_complement]

Bitwise complement, also known as bitwise negation, for 8-bit unsigned integers. Usually accessed via the ~~~ prefix operator.

Each bit of the resulting integer is the opposite of the corresponding bit of the input integer.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_neg]
def UInt8.neg (a : UInt8) :

Negation of 8-bit unsigned integers, computed modulo UInt8.size.

UInt8.neg a is equivalent to 255 - a + 1.

This function is overridden at runtime with an efficient implementation.

Equations
Equations
Equations
@[extern lean_bool_to_uint8]

Converts true to 1 and false to 0.

Equations
@[extern lean_uint8_dec_lt]
def UInt8.decLt (a b : UInt8) :
Decidable (a < b)

Decides whether one 8-bit unsigned integer is strictly less than another. Usually accessed via the DecidableLT UInt8 instance.

This function is overridden at runtime with an efficient implementation.

Examples:

  • (if (6 : UInt8) < 7 then "yes" else "no") = "yes"
  • (if (5 : UInt8) < 5 then "yes" else "no") = "no"
  • show ¬((7 : UInt8) < 7) by decide
Equations
@[extern lean_uint8_dec_le]
def UInt8.decLe (a b : UInt8) :

Decides whether one 8-bit unsigned integer is less than or equal to another. Usually accessed via the DecidableLE UInt8 instance.

This function is overridden at runtime with an efficient implementation.

Examples:

  • (if (15 : UInt8) ≤ 15 then "yes" else "no") = "yes"
  • (if (15 : UInt8) ≤ 5 then "yes" else "no") = "no"
  • (if (5 : UInt8) ≤ 15 then "yes" else "no") = "yes"
  • show (7 : UInt8) ≤ 7 by decide
Equations
instance instDecidableLtUInt8 (a b : UInt8) :
Decidable (a < b)
Equations
instance instDecidableLeUInt8 (a b : UInt8) :
Equations
@[inline]

Converts a Fin UInt16.size into the corresponding UInt16.

Equations
@[deprecated UInt16.ofBitVec (since := "2025-02-12")]
def UInt16.mk (bitVec : BitVec 16) :

Creates a UInt16 from a BitVec 16. This function is overridden with a native implementation.

Equations
@[inline, deprecated UInt16.ofNatLT (since := "2025-02-13")]
def UInt16.ofNatCore (n : Nat) (h : n < size) :

Converts a natural number to a 16-bit unsigned integer. Requires a proof that the number is small enough to be representable without overflow; it must be smaller than 2^16.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_add]
def UInt16.add (a b : UInt16) :

Adds two 16-bit unsigned integers, wrapping around on overflow. Usually accessed via the + operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_sub]
def UInt16.sub (a b : UInt16) :

Subtracts one 16-bit unsigned integer from another, wrapping around on underflow. Usually accessed via the - operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_mul]
def UInt16.mul (a b : UInt16) :

Multiplies two 16-bit unsigned integers, wrapping around on overflow. Usually accessed via the * operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_div]
def UInt16.div (a b : UInt16) :

Unsigned division for 16-bit unsigned integers, discarding the remainder. Usually accessed via the / operator.

This operation is sometimes called “floor division.” Division by zero is defined to be zero.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_mod]
def UInt16.mod (a b : UInt16) :

The modulo operator for 16-bit unsigned integers, which computes the remainder when dividing one integer by another. Usually accessed via the % operator.

When the divisor is 0, the result is the dividend rather than an error.

This function is overridden at runtime with an efficient implementation.

Examples:

Equations
@[deprecated UInt16.mod (since := "2024-09-23")]
def UInt16.modn (a : UInt16) (n : Nat) :
Equations
@[extern lean_uint16_land]

Bitwise and for 16-bit unsigned integers. Usually accessed via the &&& operator.

Each bit of the resulting integer is set if the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_lor]
def UInt16.lor (a b : UInt16) :

Bitwise or for 16-bit unsigned integers. Usually accessed via the ||| operator.

Each bit of the resulting integer is set if at least one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_xor]
def UInt16.xor (a b : UInt16) :

Bitwise exclusive or for 8-bit unsigned integers. Usually accessed via the ^^^ operator.

Each bit of the resulting integer is set if exactly one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_shift_left]

Bitwise left shift for 16-bit unsigned integers. Usually accessed via the <<< operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_shift_right]

Bitwise right shift for 16-bit unsigned integers. Usually accessed via the >>> operator.

This function is overridden at runtime with an efficient implementation.

Equations
def UInt16.lt (a b : UInt16) :

Strict inequality of 16-bit unsigned integers, defined as inequality of the corresponding natural numbers. Usually accessed via the < operator.

Equations
def UInt16.le (a b : UInt16) :

Non-strict inequality of 16-bit unsigned integers, defined as inequality of the corresponding natural numbers. Usually accessed via the operator.

Equations
Equations
Equations
@[extern lean_uint16_complement]

Bitwise complement, also known as bitwise negation, for 16-bit unsigned integers. Usually accessed via the ~~~ prefix operator.

Each bit of the resulting integer is the opposite of the corresponding bit of the input integer.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_neg]

Negation of 16-bit unsigned integers, computed modulo UInt16.size.

UInt16.neg a is equivalent to 65_535 - a + 1.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_bool_to_uint16]

Converts true to 1 and false to 0.

Equations
@[extern lean_uint16_dec_lt]
def UInt16.decLt (a b : UInt16) :
Decidable (a < b)

Decides whether one 16-bit unsigned integer is strictly less than another. Usually accessed via the DecidableLT UInt16 instance.

This function is overridden at runtime with an efficient implementation.

Examples:

  • (if (6 : UInt16) < 7 then "yes" else "no") = "yes"
  • (if (5 : UInt16) < 5 then "yes" else "no") = "no"
  • show ¬((7 : UInt16) < 7) by decide
Equations
@[extern lean_uint16_dec_le]
def UInt16.decLe (a b : UInt16) :

Decides whether one 16-bit unsigned integer is less than or equal to another. Usually accessed via the DecidableLE UInt16 instance.

This function is overridden at runtime with an efficient implementation.

Examples:

  • (if (15 : UInt16) ≤ 15 then "yes" else "no") = "yes"
  • (if (15 : UInt16) ≤ 5 then "yes" else "no") = "no"
  • (if (5 : UInt16) ≤ 15 then "yes" else "no") = "yes"
  • show (7 : UInt16) ≤ 7 by decide
Equations
@[inline]

Converts a Fin UInt32.size into the corresponding UInt32.

Equations
@[deprecated UInt32.ofBitVec (since := "2025-02-12")]
def UInt32.mk (bitVec : BitVec 32) :

Creates a UInt32 from a BitVec 32. This function is overridden with a native implementation.

Equations
@[inline, deprecated UInt32.ofNatLT (since := "2025-02-13")]
def UInt32.ofNatCore (n : Nat) (h : n < size) :

Converts a natural number to a 32-bit unsigned integer. Requires a proof that the number is small enough to be representable without overflow; it must be smaller than 2^32.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_add]
def UInt32.add (a b : UInt32) :

Adds two 32-bit unsigned integers, wrapping around on overflow. Usually accessed via the + operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_sub]
def UInt32.sub (a b : UInt32) :

Subtracts one 32-bit unsigned integer from another, wrapping around on underflow. Usually accessed via the - operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_mul]
def UInt32.mul (a b : UInt32) :

Multiplies two 32-bit unsigned integers, wrapping around on overflow. Usually accessed via the * operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_div]
def UInt32.div (a b : UInt32) :

Unsigned division for 32-bit unsigned integers, discarding the remainder. Usually accessed via the / operator.

This operation is sometimes called “floor division.” Division by zero is defined to be zero.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_mod]
def UInt32.mod (a b : UInt32) :

The modulo operator for 32-bit unsigned integers, which computes the remainder when dividing one integer by another. Usually accessed via the % operator.

When the divisor is 0, the result is the dividend rather than an error.

This function is overridden at runtime with an efficient implementation.

Examples:

Equations
@[deprecated UInt32.mod (since := "2024-09-23")]
def UInt32.modn (a : UInt32) (n : Nat) :
Equations
@[extern lean_uint32_land]

Bitwise and for 32-bit unsigned integers. Usually accessed via the &&& operator.

Each bit of the resulting integer is set if the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_lor]
def UInt32.lor (a b : UInt32) :

Bitwise or for 32-bit unsigned integers. Usually accessed via the ||| operator.

Each bit of the resulting integer is set if at least one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_xor]
def UInt32.xor (a b : UInt32) :

Bitwise exclusive or for 32-bit unsigned integers. Usually accessed via the ^^^ operator.

Each bit of the resulting integer is set if exactly one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_shift_left]

Bitwise left shift for 32-bit unsigned integers. Usually accessed via the <<< operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_shift_right]

Bitwise right shift for 32-bit unsigned integers. Usually accessed via the >>> operator.

This function is overridden at runtime with an efficient implementation.

Equations
def UInt32.lt (a b : UInt32) :

Strict inequality of 32-bit unsigned integers, defined as inequality of the corresponding natural numbers. Usually accessed via the < operator.

Equations
def UInt32.le (a b : UInt32) :

Non-strict inequality of 32-bit unsigned integers, defined as inequality of the corresponding natural numbers. Usually accessed via the operator.

Equations
@[extern lean_uint32_complement]

Bitwise complement, also known as bitwise negation, for 32-bit unsigned integers. Usually accessed via the ~~~ prefix operator.

Each bit of the resulting integer is the opposite of the corresponding bit of the input integer.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_neg]

Negation of 32-bit unsigned integers, computed modulo UInt32.size.

UInt32.neg a is equivalent to 429_4967_295 - a + 1.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_bool_to_uint32]

Converts true to 1 and false to 0.

Equations
@[inline]

Converts a Fin UInt64.size into the corresponding UInt64.

Equations
@[deprecated UInt64.ofBitVec (since := "2025-02-12")]
def UInt64.mk (bitVec : BitVec 64) :

Creates a UInt64 from a BitVec 64. This function is overridden with a native implementation.

Equations
@[inline, deprecated UInt64.ofNatLT (since := "2025-02-13")]
def UInt64.ofNatCore (n : Nat) (h : n < size) :

Converts a natural number to a 64-bit unsigned integer. Requires a proof that the number is small enough to be representable without overflow; it must be smaller than 2^64.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_add]
def UInt64.add (a b : UInt64) :

Adds two 64-bit unsigned integers, wrapping around on overflow. Usually accessed via the + operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_sub]
def UInt64.sub (a b : UInt64) :

Subtracts one 64-bit unsigned integer from another, wrapping around on underflow. Usually accessed via the - operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_mul]
def UInt64.mul (a b : UInt64) :

Multiplies two 64-bit unsigned integers, wrapping around on overflow. Usually accessed via the * operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_div]
def UInt64.div (a b : UInt64) :

Unsigned division for 64-bit unsigned integers, discarding the remainder. Usually accessed via the / operator.

This operation is sometimes called “floor division.” Division by zero is defined to be zero.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_mod]
def UInt64.mod (a b : UInt64) :

The modulo operator for 64-bit unsigned integers, which computes the remainder when dividing one integer by another. Usually accessed via the % operator.

When the divisor is 0, the result is the dividend rather than an error.

This function is overridden at runtime with an efficient implementation.

Examples:

Equations
@[deprecated UInt64.mod (since := "2024-09-23")]
def UInt64.modn (a : UInt64) (n : Nat) :
Equations
@[extern lean_uint64_land]

Bitwise and for 64-bit unsigned integers. Usually accessed via the &&& operator.

Each bit of the resulting integer is set if the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_lor]
def UInt64.lor (a b : UInt64) :

Bitwise or for 64-bit unsigned integers. Usually accessed via the ||| operator.

Each bit of the resulting integer is set if at least one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_xor]
def UInt64.xor (a b : UInt64) :

Bitwise exclusive or for 64-bit unsigned integers. Usually accessed via the ^^^ operator.

Each bit of the resulting integer is set if exactly one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_shift_left]

Bitwise left shift for 64-bit unsigned integers. Usually accessed via the <<< operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_shift_right]

Bitwise right shift for 64-bit unsigned integers. Usually accessed via the >>> operator.

This function is overridden at runtime with an efficient implementation.

Equations
def UInt64.lt (a b : UInt64) :

Strict inequality of 64-bit unsigned integers, defined as inequality of the corresponding natural numbers. Usually accessed via the < operator.

Equations
def UInt64.le (a b : UInt64) :

Non-strict inequality of 64-bit unsigned integers, defined as inequality of the corresponding natural numbers. Usually accessed via the operator.

Equations
Equations
Equations
@[extern lean_uint64_complement]

Bitwise complement, also known as bitwise negation, for 64-bit unsigned integers. Usually accessed via the ~~~ prefix operator.

Each bit of the resulting integer is the opposite of the corresponding bit of the input integer.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_neg]

Negation of 32-bit unsigned integers, computed modulo UInt64.size.

UInt64.neg a is equivalent to 18_446_744_073_709_551_615 - a + 1.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_bool_to_uint64]

Converts true to 1 and false to 0.

Equations
@[extern lean_uint64_dec_lt]
def UInt64.decLt (a b : UInt64) :
Decidable (a < b)

Decides whether one 64-bit unsigned integer is strictly less than another. Usually accessed via the DecidableLT UInt64 instance.

This function is overridden at runtime with an efficient implementation.

Examples:

  • (if (6 : UInt64) < 7 then "yes" else "no") = "yes"
  • (if (5 : UInt64) < 5 then "yes" else "no") = "no"
  • show ¬((7 : UInt64) < 7) by decide
Equations
@[extern lean_uint64_dec_le]
def UInt64.decLe (a b : UInt64) :

Decides whether one 64-bit unsigned integer is less than or equal to another. Usually accessed via the DecidableLE UInt64 instance.

This function is overridden at runtime with an efficient implementation.

Examples:

  • (if (15 : UInt64) ≤ 15 then "yes" else "no") = "yes"
  • (if (15 : UInt64) ≤ 5 then "yes" else "no") = "no"
  • (if (5 : UInt64) ≤ 15 then "yes" else "no") = "yes"
  • show (7 : UInt64) ≤ 7 by decide
Equations
@[inline]

Converts a Fin USize.size into the corresponding USize.

Equations
@[deprecated USize.ofBitVec (since := "2025-02-12")]

Creates a USize from a BitVec System.Platform.numBits. This function is overridden with a native implementation.

Equations
@[inline, deprecated USize.ofNatLT (since := "2025-02-13")]
def USize.ofNatCore (n : Nat) (h : n < size) :

Converts a natural number to a USize. Requires a proof that the number is small enough to be representable without overflow.

This function is overridden at runtime with an efficient implementation.

Equations
@[simp]
theorem USize.le_size :
2 ^ 32 size
@[simp]
theorem USize.size_le :
size 2 ^ 64
@[deprecated USize.size_le (since := "2025-02-24")]
theorem usize_size_le :
USize.size 18446744073709551616
@[deprecated USize.le_size (since := "2025-02-24")]
theorem le_usize_size :
4294967296 USize.size
@[extern lean_usize_mul]
def USize.mul (a b : USize) :

Multiplies two word-sized unsigned integers, wrapping around on overflow. Usually accessed via the * operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_div]
def USize.div (a b : USize) :

Unsigned division for word-sized unsigned integers, discarding the remainder. Usually accessed via the / operator.

This operation is sometimes called “floor division.” Division by zero is defined to be zero.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_mod]
def USize.mod (a b : USize) :

The modulo operator for word-sized unsigned integers, which computes the remainder when dividing one integer by another. Usually accessed via the % operator.

When the divisor is 0, the result is the dividend rather than an error.

This function is overridden at runtime with an efficient implementation.

Examples:

Equations
@[deprecated USize.mod (since := "2024-09-23")]
def USize.modn (a : USize) (n : Nat) :
Equations
@[extern lean_usize_land]
def USize.land (a b : USize) :

Bitwise and for word-sized unsigned integers. Usually accessed via the &&& operator.

Each bit of the resulting integer is set if the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_lor]
def USize.lor (a b : USize) :

Bitwise or for word-sized unsigned integers. Usually accessed via the ||| operator.

Each bit of the resulting integer is set if at least one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_xor]
def USize.xor (a b : USize) :

Bitwise exclusive or for word-sized unsigned integers. Usually accessed via the ^^^ operator.

Each bit of the resulting integer is set if exactly one of the corresponding bits of both input integers are set.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_shift_left]

Bitwise left shift for word-sized unsigned integers. Usually accessed via the <<< operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_shift_right]

Bitwise right shift for word-sized unsigned integers. Usually accessed via the >>> operator.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_of_nat]
def USize.ofNat32 (n : Nat) (h : n < 4294967296) :

Converts a natural number to a USize. Overflow is impossible on any supported platform because USize.size is either 2^32 or 2^64.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint8_to_usize]

Converts 8-bit unsigned integers to word-sized unsigned integers.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_to_uint8]

Converts word-sized unsigned integers to 8-bit unsigned integers. Wraps around on overflow.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint16_to_usize]

Converts 16-bit unsigned integers to word-sized unsigned integers.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_to_uint16]

Converts word-sized unsigned integers to 16-bit unsigned integers. Wraps around on overflow.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint32_to_usize]

Converts 32-bit unsigned integers to word-sized unsigned integers.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_to_uint32]

Converts word-sized unsigned integers to 32-bit unsigned integers. Wraps around on overflow, which might occur on 64-bit architectures.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_uint64_to_usize]

Converts 64-bit unsigned integers to word-sized unsigned integers. On 32-bit machines, this may overflow, which results in the value wrapping around (that is, it is reduced modulo USize.size).

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_to_uint64]

Converts word-sized unsigned integers to 32-bit unsigned integers. This cannot overflow because USize.size is either 2^32 or 2^64.

This function is overridden at runtime with an efficient implementation.

Equations
Equations
Equations
Equations
@[extern lean_usize_complement]

Bitwise complement, also known as bitwise negation, for word-sized unsigned integers. Usually accessed via the ~~~ prefix operator.

Each bit of the resulting integer is the opposite of the corresponding bit of the input integer.

This function is overridden at runtime with an efficient implementation.

Equations
@[extern lean_usize_neg]
def USize.neg (a : USize) :

Negation of word-sized unsigned integers, computed modulo USize.size.

This function is overridden at runtime with an efficient implementation.

Equations
Equations
Equations
@[extern lean_bool_to_usize]

Converts true to 1 and false to 0.

Equations