ParseBoolean parses a Boolean ValueType into a Go bool (not particularly useful, but here for completeness) SYS-REQ-012, SYS-REQ-036, SYS-REQ-057, SYS-REQ-066
(b []byte)
| 1573 | // ParseBoolean parses a Boolean ValueType into a Go bool (not particularly useful, but here for completeness) |
| 1574 | // SYS-REQ-012, SYS-REQ-036, SYS-REQ-057, SYS-REQ-066 |
| 1575 | func ParseBoolean(b []byte) (bool, error) { |
| 1576 | switch { |
| 1577 | case bytes.Equal(b, trueLiteral): |
| 1578 | return true, nil |
| 1579 | case bytes.Equal(b, falseLiteral): |
| 1580 | return false, nil |
| 1581 | default: |
| 1582 | return false, MalformedValueError |
| 1583 | } |
| 1584 | } |
| 1585 | |
| 1586 | // ParseString parses a String ValueType into a Go string (the main parsing work is unescaping the JSON string) |
| 1587 | // SYS-REQ-014, SYS-REQ-038, SYS-REQ-060, SYS-REQ-063, SYS-REQ-067 |
no outgoing calls