github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/docs/types/bool.md (about) 1 # `bool` 2 3 > Boolean (primitive) 4 5 ## Description 6 7 A true or false value. 8 9 ## Supported Hooks 10 11 * `Marshal()` 12 Supported 13 * `Unmarshal()` 14 Supported 15 16 ## See Also 17 18 * [`num` (number)](../types/num.md): 19 Floating point number (primitive) 20 * [`str` (string)](../types/str.md): 21 string (primitive) 22 23 ### Read more about type hooks 24 25 - [`ReadIndex()` (type)](../apis/ReadIndex.md): Data type handler for the index, `[`, builtin 26 - [`ReadNotIndex()` (type)](../apis/ReadNotIndex.md): Data type handler for the bang-prefixed index, `: Read from a data type one array element at a time 28 - [`WriteArray()` (type)](../apis/WriteArray.md): Write a data type, one array element at a time 29 - [`ReadMap()` (type)](../apis/ReadMap.md): Treat data type as a key/value structure and read its contents 30 - [`Marshal()` (type)](../apis/Marshal.md): Converts structured memory into a structured file format (eg for stdio) 31 - [`Unmarshal()` (type)](../apis/Unmarshal.md): Converts a structured file format into structured memory 32 33 <hr/> 34 35 This document was generated from [builtins/types/boolean/boolean_doc.yaml](https://github.com/lmorg/murex/blob/master/builtins/types/boolean/boolean_doc.yaml).