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