NullableVec

Fully qualified path: alexandria_data_structures::vec::NullableVec

#![allow(unused)]
fn main() {
pub struct NullableVec<T> {
    items: Felt252Dict<Nullable<T>>,
    len: usize,
}
}