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