#[repr(transparent)]
pub struct SmallIndex(u32);
Expand description

A type that represents a “small” index.

The main idea of this type is to provide something that can index memory, but uses less memory than usize on 64-bit systems. Specifically, its representation is always a u32 and has repr(transparent) enabled. (So it is safe to transmute between a u32 and a SmallIndex.)

A small index is typically useful in cases where there is no practical way that the index will overflow a 32-bit integer. A good example of this is an NFA state. If you could somehow build an NFA with 2^30 states, its memory usage would be exorbitant and its runtime execution would be so slow as to be completely worthless. Therefore, this crate generally deems it acceptable to return an error if it would otherwise build an NFA that requires a slice longer than what a 32-bit integer can index. In exchange, we can use 32-bit indices instead of 64-bit indices in various places.

This type ensures this by providing a constructor that will return an error if its argument cannot fit into the type. This makes it much easier to handle these sorts of boundary cases that are otherwise extremely subtle.

On all targets, this type guarantees that its value will fit in a u32, i32, usize and an isize. This means that on 16-bit targets, for example, this type’s maximum value will never overflow an isize, which means it will never overflow a i16 even though its internal representation is still a u32.

The purpose for making the type fit into even signed integer types like isize is to guarantee that the difference between any two small indices is itself also a small index. This is useful in certain contexts, e.g., for delta encoding.

Other types

The following types wrap SmallIndex to provide a more focused use case:

  • PatternID is for representing the identifiers of patterns.
  • StateID is for representing the identifiers of states in finite automata. It is used for both NFAs and DFAs.

Representation

This type is always represented internally by a u32 and is marked as repr(transparent). Thus, this type always has the same representation as a u32. It is thus safe to transmute between a u32 and a SmallIndex.

Indexing

For convenience, callers may use a SmallIndex to index slices.

Safety

While a SmallIndex is meant to guarantee that its value fits into usize without using as much space as a usize on all targets, callers must not rely on this property for safety. Callers may choose to rely on this property for correctness however. For example, creating a SmallIndex with an invalid value can be done in entirely safe code. This may in turn result in panics or silent logical errors.

Tuple Fields§

§0: u32

Implementations§

source§

impl SmallIndex

source

pub const MAX: SmallIndex = _

The maximum index value.

source

pub const LIMIT: usize = 2_147_483_647usize

The total number of values that can be represented as a small index.

source

pub const ZERO: SmallIndex = _

The zero index value.

source

pub const SIZE: usize = 4usize

The number of bytes that a single small index uses in memory.

source

pub fn new(index: usize) -> Result<SmallIndex, SmallIndexError>

Create a new small index.

If the given index exceeds SmallIndex::MAX, then this returns an error.

source

pub const fn new_unchecked(index: usize) -> SmallIndex

Create a new small index without checking whether the given value exceeds SmallIndex::MAX.

Using this routine with an invalid index value will result in unspecified behavior, but not undefined behavior. In particular, an invalid index value is likely to cause panics or possibly even silent logical errors.

Callers must never rely on a SmallIndex to be within a certain range for memory safety.

source

pub fn must(index: usize) -> SmallIndex

Like SmallIndex::new, but panics if the given index is not valid.

source

pub const fn as_usize(&self) -> usize

Return this small index as a usize. This is guaranteed to never overflow usize.

source

pub const fn as_u64(&self) -> u64

Return this small index as a u64. This is guaranteed to never overflow.

source

pub const fn as_u32(&self) -> u32

Return the internal u32 of this small index. This is guaranteed to never overflow u32.

source

pub const fn as_i32(&self) -> i32

Return the internal u32 of this small index represented as an i32. This is guaranteed to never overflow an i32.

source

pub fn one_more(&self) -> usize

Returns one more than this small index as a usize.

Since a small index has constraints on its maximum value, adding 1 to it will always fit in a usize, u32 and a i32.

source

pub fn from_ne_bytes(bytes: [u8; 4]) -> Result<SmallIndex, SmallIndexError>

Decode this small index from the bytes given using the native endian byte order for the current target.

If the decoded integer is not representable as a small index for the current target, then this returns an error.

source

pub fn from_ne_bytes_unchecked(bytes: [u8; 4]) -> SmallIndex

Decode this small index from the bytes given using the native endian byte order for the current target.

This is analogous to SmallIndex::new_unchecked in that is does not check whether the decoded integer is representable as a small index.

source

pub fn to_ne_bytes(&self) -> [u8; 4]

Return the underlying small index integer as raw bytes in native endian format.

Trait Implementations§

source§

impl Clone for SmallIndex

source§

fn clone(&self) -> SmallIndex

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SmallIndex

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SmallIndex

source§

fn default() -> SmallIndex

Returns the “default value” for a type. Read more
source§

impl From<u8> for SmallIndex

source§

fn from(index: u8) -> SmallIndex

Converts to this type from the input type.
source§

impl Hash for SmallIndex

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T> Index<SmallIndex> for [T]

§

type Output = T

The returned type after indexing.
source§

fn index(&self, index: SmallIndex) -> &T

Performs the indexing (container[index]) operation. Read more
source§

impl<T> Index<SmallIndex> for Vec<T>

§

type Output = T

The returned type after indexing.
source§

fn index(&self, index: SmallIndex) -> &T

Performs the indexing (container[index]) operation. Read more
source§

impl<T> IndexMut<SmallIndex> for [T]

source§

fn index_mut(&mut self, index: SmallIndex) -> &mut T

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<T> IndexMut<SmallIndex> for Vec<T>

source§

fn index_mut(&mut self, index: SmallIndex) -> &mut T

Performs the mutable indexing (container[index]) operation. Read more
source§

impl Ord for SmallIndex

source§

fn cmp(&self, other: &SmallIndex) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<SmallIndex> for SmallIndex

source§

fn eq(&self, other: &SmallIndex) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<SmallIndex> for SmallIndex

source§

fn partial_cmp(&self, other: &SmallIndex) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl TryFrom<u16> for SmallIndex

§

type Error = SmallIndexError

The type returned in the event of a conversion error.
source§

fn try_from(index: u16) -> Result<SmallIndex, SmallIndexError>

Performs the conversion.
source§

impl TryFrom<u32> for SmallIndex

§

type Error = SmallIndexError

The type returned in the event of a conversion error.
source§

fn try_from(index: u32) -> Result<SmallIndex, SmallIndexError>

Performs the conversion.
source§

impl TryFrom<u64> for SmallIndex

§

type Error = SmallIndexError

The type returned in the event of a conversion error.
source§

fn try_from(index: u64) -> Result<SmallIndex, SmallIndexError>

Performs the conversion.
source§

impl TryFrom<usize> for SmallIndex

§

type Error = SmallIndexError

The type returned in the event of a conversion error.
source§

fn try_from(index: usize) -> Result<SmallIndex, SmallIndexError>

Performs the conversion.
source§

impl Copy for SmallIndex

source§

impl Eq for SmallIndex

source§

impl StructuralEq for SmallIndex

source§

impl StructuralPartialEq for SmallIndex

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.