This crate contains types and behaviours which resolve at compile time.
Include this crate as dependancy by inserting the following into your Cargo.toml
file.
toml
[dependencies]
ct-utils = "1.10.0"
Inside your lib.rs
or main.rs
add the usage of this crate.
Often used types are re-exported inside the prelude of this crate which lower the
verbosity of your implementation. Otherwise all types are accessible through their fully
qualified path.
```rust
// Optional use ct_utils::prelude::*; ```
And you're all set!
An example of the included cons list is shown, which is the CTCons
trait.
Construct a cons list of type items and calculate the offset of one specific type.
```rust
use ctutils::prelude::*; use ctutils::ct_cons::Cons;
type BigList = Cons
fn main() {
let listsize = BigList::size(); // 1-indexed
let listoffset = BigList::offset_of::
assert!(list_size > list_offset);
assert_eq!(list_size, 5);
assert_eq!(list_offset, 4);
} ```