tycho-types 0.3.4

A set of primitive types and utilities for the Tycho node.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The `tycho-types` prelude.
//!
//! This brings into scope a number of traits and commonly used type aliases.

pub use crate::boc::{Boc, BocRepr};
pub use crate::cell::{
    Cell, CellBuilder, CellContext, CellDataBuilder, CellFamily, CellImpl, CellSlice,
    CellSliceParts, CellSliceRange, CellType, DynCell, EquivalentRepr, ExactSize, HashBytes, Load,
    LoadCell, Size, Store, UsageTree, UsageTreeMode, WeakCell,
};
pub use crate::dict::{AugDict, Dict, DictKey, LoadDictKey, RawDict, StoreDictKey};
#[cfg(feature = "bigint")]
pub use crate::util::BigIntExt;