Returns `true` if this value is an instance of a bool value and false.
| 490 | |
| 491 | // Returns `true` if this value is an instance of a bool value and false. |
| 492 | bool IsFalse() const { return IsBool() && !GetBool().NativeValue(); } |
| 493 | |
| 494 | // Returns `true` if this value is an instance of a bytes value. |
| 495 | bool IsBytes() const { return variant_.Is<BytesValue>(); } |