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