never executed always true always false
1 module HelVM.HelMA.Automaton.Types.IntCellType where 2 3 -- | Constructors 4 defaultIntCellType :: IntCellType 5 defaultIntCellType = minBound 6 7 intCellTypes :: NonEmpty IntCellType 8 intCellTypes = universeNonEmpty 9 10 -- | Types 11 data IntCellType = IntegerType | Int8Type | Int16Type | Int32Type | Int64Type 12 deriving stock (Bounded , Enum , Eq , Read , Show)