BitVector Type
BitVector is the fundamental data type for binary code, which is essentially a bit vector. We want the size of a bit vector to be less than or equal to 64 bits because bigint operation is slow, and most arithmetics on modern architectures are in 64 bits any ways. For example, SIMD operations can also be divided into a set of 64-bit operations. N.B. Num becomes zero when the Length becomes greater than 64. We intentionally do not sync Num and BigNum.
Instance members
Instance member | Description |
|
|
|
|
Full Usage:
this.BigValue
Returns: bigint
Modifiers: abstract |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
this.IsNegative
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.IsOne
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.IsPositive
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.IsZero
Returns: bool
Modifiers: abstract |
|
|
|
|
|
|
|
Full Usage:
this.SmallValue
Returns: uint64
Modifiers: abstract |
|
Full Usage:
this.ValToString
Returns: string
Modifiers: abstract |
|
Static members
Static member | Description |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
BitVector.OfBInt(i) (typ)
Parameters:
bigint
typ : int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
|
|
Full Usage:
BitVector.OfInt32(i) (typ)
Parameters:
int32
typ : int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
Modifiers: inline |
|
Full Usage:
BitVector.OfInt64(i) (typ)
Parameters:
int64
typ : int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
Modifiers: inline |
|
Full Usage:
BitVector.OfUInt32(i) (typ)
Parameters:
uint32
typ : int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
Modifiers: inline |
|
Full Usage:
BitVector.OfUInt64(i) (typ)
Parameters:
uint64
typ : int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
Modifiers: inline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
BitVector.SignedMax(rt)
Parameters:
int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
|
|
Full Usage:
BitVector.SignedMin(rt)
Parameters:
int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
BitVector.UnsignedMax(rt)
Parameters:
int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
|
|
Full Usage:
BitVector.UnsignedMin(rt)
Parameters:
int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
|
|
|
|
|
|
Full Usage:
BitVector.Zero(t)
Parameters:
int<MeasureProduct<rt, MeasureOne>>
Returns: BitVector
|