Compustate-option
Fixtype of optional computation states.
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 → compustate-option-none
- Represents that no compustate-option is available, i.e., Nothing or None.
- :some → compustate-option-some
- An available compustate-option, i.e., Just val or Some val.
Subtopics
- Compustate-option-fix
- Fixing function for compustate-option structures.
- Compustate-option-equiv
- Basic equivalence relation for compustate-option structures.
- Compustate-option-case
- Case macro for the different kinds of compustate-option structures.
- Compustate-option-some
- An available compustate-option, i.e., Just val or Some val.
- Compustate-option-none
- Represents that no compustate-option is available, i.e., Nothing or None.
- Compustate-optionp
- Recognizer for compustate-option structures.