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