Literal-option
Fixtype of optional literals.
This is an option type introduced by fty::defoption.
Note that defoption is just a wrapper for fty::defflexsum, so there are :none and :some member
types, a case macro, and so forth.
Member Types
- :none → literal-option-none
- Represents that no literal-option is available, i.e., Nothing or None.
- :some → literal-option-some
- An available literal-option, i.e., Just val or Some val.
Subtopics
- Literal-option-fix
- Fixing function for literal-option structures.
- Literal-option-case
- Case macro for the different kinds of literal-option structures.
- Literal-option-equiv
- Basic equivalence relation for literal-option structures.
- Literal-option-some
- An available literal-option, i.e., Just val or Some val.
- Literal-optionp
- Recognizer for literal-option structures.
- Literal-option-none
- Represents that no literal-option is available, i.e., Nothing or None.