never executed always true always false
    1 module HelVM.HelMA.Automaton.Types.FormatType where
    2 
    3 -- | Constructors
    4 defaultFormatType :: FormatType
    5 defaultFormatType = minBound
    6 
    7 formatTypes :: NonEmpty FormatType
    8 formatTypes = universeNonEmpty
    9 
   10 -- | Types
   11 data FormatType = BinaryLabel | TextLabel
   12   deriving stock (Bounded , Enum , Eq , Read , Show)