ParseFlags is a type used to represent configuration options that can be applied when parsing json input.
| 80 | // ParseFlags is a type used to represent configuration options that can be |
| 81 | // applied when parsing json input. |
| 82 | type ParseFlags uint32 |
| 83 | |
| 84 | func (flags ParseFlags) has(f ParseFlags) bool { |
| 85 | return (flags & f) != 0 |
no outgoing calls
no test coverage detected