• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • Soft
        • C
        • Bv
        • Imp-language
        • Event-macros
        • Java
        • Bitcoin
        • Ethereum
        • Yul
        • Zcash
        • ACL2-programming-language
        • Prime-fields
        • Json
          • Parser-output-to-values
          • Values
            • Value/valuelist/member/memberlist
            • Value-option
              • Value-option-fix
              • Value-option-case
              • Value-option-equiv
              • Value-option-some
              • Value-option-none
              • Value-optionp
            • Irr-value
            • Irr-member
          • Syntax
          • Patbind-pattern
          • Operations
        • Syntheto
        • File-io-light
        • Cryptography
        • Number-theory
        • Lists-light
        • Axe
        • Builtins
        • Solidity
        • Helpers
        • Htclient
        • Typed-lists-light
        • Arithmetic-light
      • X86isa
      • Axe
      • Execloader
    • Math
    • Testing-utilities
  • Values

Value-option

Fixtype of optional JSON values.

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 → value-option-none
Represents that no value-option is available, i.e., Nothing or None.
:some → value-option-some
An available value-option, i.e., Just val or Some val.

Subtopics

Value-option-fix
Fixing function for value-option structures.
Value-option-case
Case macro for the different kinds of value-option structures.
Value-option-equiv
Basic equivalence relation for value-option structures.
Value-option-some
An available value-option, i.e., Just val or Some val.
Value-option-none
Represents that no value-option is available, i.e., Nothing or None.
Value-optionp
Recognizer for value-option structures.