isBoundedLattice

Tests if something is a BoundedLattice. * returns true if T is a BoundedLattice of dimension N, Storing cells of type Ct. False if not. * A BoundedLattice is a $(LATTICE) with a fixed size. It's function getLatticeBounds returns a list of uint's representing the length of the lattice's dimensions * A BoundedLattice is a Lattice with the additional function: void getLatticeBounds(). *

template isBoundedLattice (
T
Ct
uint N
) {
enum isBoundedLattice;
}

Parameters

T

type to be tested

Ct

type of the cells the BoundedLattice should contain

N

number of dimensions *

Return Value

true if T is a BoundedLattice, false if not

Meta