ConditionalRestriction.Parse.InputData
Description
Input data types and values.
type ID = String Source #
An identifier, identifying a value, e.g. "weight".
"weight"
data Type Source #
Input data type.
Constructors
Boolean type, e.g. value "true".
"true"
Number type, e.g. value "3.0".
"3.0"
Time type, e.g. value "2022-05-10 18:00".
"2022-05-10 18:00"
Defined in ConditionalRestriction.Parse.InputData
Methods
showsPrec :: Int -> Type -> ShowS #
show :: Type -> String #
showList :: [Type] -> ShowS #
(==) :: Type -> Type -> Bool #
(/=) :: Type -> Type -> Bool #
data Value Source #
Input data value, corresponding to input Types.
Type
Boolean value, e.g. "true".
Number value, e.g. "3.0".
Time value, e.g. "2022-05-10 18:00".
showsPrec :: Int -> Value -> ShowS #
show :: Value -> String #
showList :: [Value] -> ShowS #
(==) :: Value -> Value -> Bool #
(/=) :: Value -> Value -> Bool #