Bool returns a bool containing the value of the json boolean that the tokenizer is currently pointing at. This method must only be called after checking the kind of the token via a call to Kind. If the tokenizer is not positioned on a boolean, the behavior is undefined.
()
| 244 | // |
| 245 | // If the tokenizer is not positioned on a boolean, the behavior is undefined. |
| 246 | func (t *Tokenizer) Bool() bool { return t.flags.kind() == True } |
| 247 | |
| 248 | // Int returns a byte slice containing the value of the json number that the |
| 249 | // tokenizer is currently pointing at. |
no test coverage detected