Trait moore_svlog::ty::TypeContext[][src]

pub trait TypeContext<'a> {
    fn intern_packed(&self, ty: PackedType<'a>) -> &'a PackedType<'a>;
fn intern_unpacked(&self, ty: UnpackedType<'a>) -> &'a UnpackedType<'a>; }
Expand description

A container for type operations.

Required methods

Internalize a packed type.

Internalize an unpacked type.

Implementors