pub trait FixedInteger: Bounded + ConditionallySelectable + Constants + Copy + Integer {
    const LIMBS: usize;
}
Expand description

Fixed-width integers.

Required Associated Constants§

source

const LIMBS: usize

The number of limbs used on this platform.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<const LIMBS: usize> FixedInteger for Uint<LIMBS>

source§

const LIMBS: usize = LIMBS