Returns `true` if this value is an instance of a bool value and true.
| 487 | |
| 488 | // Returns `true` if this value is an instance of a bool value and true. |
| 489 | bool IsTrue() const { return IsBool() && GetBool().NativeValue(); } |
| 490 | |
| 491 | // Returns `true` if this value is an instance of a bool value and false. |
| 492 | bool IsFalse() const { return IsBool() && !GetBool().NativeValue(); } |