BoundedLattice

Example of a BoundedLattice

struct BoundedLattice (
Ct
uint N
) {
Lattice!(Ct, N) lattice;
}

Alias This

lattice

Examples

static assert(isBoundedLattice!(BoundedLattice!(int, 3), int, 3));
static assert(isAnyLattice!(BoundedLattice!(char, 7)));

Meta