GetBoolean returns the value retrieved by `Get`, cast to a bool if possible. The offset is the same as in `Get`. If key data type do not match, it will return error. SYS-REQ-005, SYS-REQ-079
(data []byte, keys ...string)
| 2012 | // If key data type do not match, it will return error. |
| 2013 | // SYS-REQ-005, SYS-REQ-079 |
| 2014 | func GetBoolean(data []byte, keys ...string) (val bool, err error) { |
| 2015 | v, t, _, e := Get(data, keys...) |
| 2016 | |
| 2017 | if e != nil { |
| 2018 | return false, e |
| 2019 | } |
| 2020 | |
| 2021 | if t != Boolean { |
| 2022 | if t == Null { |
| 2023 | return false, NullValueError |
| 2024 | } |
| 2025 | return false, fmt.Errorf("Value is not a boolean: %s", string(v)) |
| 2026 | } |
| 2027 | |
| 2028 | return ParseBoolean(v) |
| 2029 | } |
| 2030 | |
| 2031 | // ParseBoolean parses a Boolean ValueType into a Go bool (not particularly useful, but here for completeness) |
| 2032 | // SYS-REQ-012, SYS-REQ-036, SYS-REQ-057, SYS-REQ-066 |