nanvm-lib 0.1.1

NaNVM library
Documentation
1
2
3
4
5
6
7
8
use crate::common::{bit_subset64::BitSubset64, cast::Cast};

pub trait ValueCast: Sized + Cast<u64>
where
    u64: Cast<Self>,
{
    const SUBSET: BitSubset64<Self>;
}