never executed always true always false
1 module HelVM.HelMA.Automata.BrainFuck.API.ImplType where 2 3 -- | Constructors 4 defaultImplType :: ImplType 5 defaultImplType = minBound 6 7 implTypes :: NonEmpty ImplType 8 implTypes = universeNonEmpty 9 10 -- | Type 11 data ImplType = FastType | TreeType | FlatType 12 deriving stock (Bounded , Enum , Eq , Read , Show)