|
V8 Project
|
A primitive boolean value (ECMA-262, 4.3.14). More...
#include <v8.h>
Inheritance diagram for v8::Boolean:
Collaboration diagram for v8::Boolean:Public Member Functions | |
| bool | Value () const |
Public Member Functions inherited from v8::Value | |
| bool | IsUndefined () const |
| Returns true if this value is the undefined value. More... | |
| bool | IsNull () const |
| Returns true if this value is the null value. More... | |
| bool | IsTrue () const |
| Returns true if this value is true. More... | |
| bool | IsFalse () const |
| Returns true if this value is false. More... | |
| bool | IsName () const |
| Returns true if this value is a symbol or a string. More... | |
| bool | IsString () const |
| Returns true if this value is an instance of the String type. More... | |
| bool | IsSymbol () const |
| Returns true if this value is a symbol. More... | |
| bool | IsFunction () const |
| Returns true if this value is a function. More... | |
| bool | IsArray () const |
| Returns true if this value is an array. More... | |
| bool | IsObject () const |
| Returns true if this value is an object. More... | |
| bool | IsBoolean () const |
| Returns true if this value is boolean. More... | |
| bool | IsNumber () const |
| Returns true if this value is a number. More... | |
| bool | IsExternal () const |
| Returns true if this value is external. More... | |
| bool | IsInt32 () const |
| Returns true if this value is a 32-bit signed integer. More... | |
| bool | IsUint32 () const |
| Returns true if this value is a 32-bit unsigned integer. More... | |
| bool | IsDate () const |
| Returns true if this value is a Date. More... | |
| bool | IsArgumentsObject () const |
| Returns true if this value is an Arguments object. More... | |
| bool | IsBooleanObject () const |
| Returns true if this value is a Boolean object. More... | |
| bool | IsNumberObject () const |
| Returns true if this value is a Number object. More... | |
| bool | IsStringObject () const |
| Returns true if this value is a String object. More... | |
| bool | IsSymbolObject () const |
| Returns true if this value is a Symbol object. More... | |
| bool | IsNativeError () const |
| Returns true if this value is a NativeError. More... | |
| bool | IsRegExp () const |
| Returns true if this value is a RegExp. More... | |
| bool | IsGeneratorFunction () const |
| Returns true if this value is a Generator function. More... | |
| bool | IsGeneratorObject () const |
| Returns true if this value is a Generator object (iterator). More... | |
| bool | IsPromise () const |
| Returns true if this value is a Promise. More... | |
| bool | IsMap () const |
| Returns true if this value is a Map. More... | |
| bool | IsSet () const |
| Returns true if this value is a Set. More... | |
| bool | IsWeakMap () const |
| Returns true if this value is a WeakMap. More... | |
| bool | IsWeakSet () const |
| Returns true if this value is a WeakSet. More... | |
| bool | IsArrayBuffer () const |
| Returns true if this value is an ArrayBuffer. More... | |
| bool | IsArrayBufferView () const |
| Returns true if this value is an ArrayBufferView. More... | |
| bool | IsTypedArray () const |
| Returns true if this value is one of TypedArrays. More... | |
| bool | IsUint8Array () const |
| Returns true if this value is an Uint8Array. More... | |
| bool | IsUint8ClampedArray () const |
| Returns true if this value is an Uint8ClampedArray. More... | |
| bool | IsInt8Array () const |
| Returns true if this value is an Int8Array. More... | |
| bool | IsUint16Array () const |
| Returns true if this value is an Uint16Array. More... | |
| bool | IsInt16Array () const |
| Returns true if this value is an Int16Array. More... | |
| bool | IsUint32Array () const |
| Returns true if this value is an Uint32Array. More... | |
| bool | IsInt32Array () const |
| Returns true if this value is an Int32Array. More... | |
| bool | IsFloat32Array () const |
| Returns true if this value is a Float32Array. More... | |
| bool | IsFloat64Array () const |
| Returns true if this value is a Float64Array. More... | |
| bool | IsDataView () const |
| Returns true if this value is a DataView. More... | |
| Local< Boolean > | ToBoolean () const |
| Local< Number > | ToNumber () const |
| Local< String > | ToString () const |
| Local< String > | ToDetailString () const |
| Local< Object > | ToObject () const |
| Local< Integer > | ToInteger () const |
| Local< Uint32 > | ToUint32 () const |
| Local< Int32 > | ToInt32 () const |
| Local< Uint32 > | ToArrayIndex () const |
| Attempts to convert a string to an array index. More... | |
| bool | BooleanValue () const |
| double | NumberValue () const |
| int64_t | IntegerValue () const |
| uint32_t | Uint32Value () const |
| int32_t | Int32Value () const |
| bool | Equals (Handle< Value > that) const |
| JS ==. More... | |
| bool | StrictEquals (Handle< Value > that) const |
| bool | SameValue (Handle< Value > that) const |
Static Public Member Functions | |
| static Handle< Boolean > | New (Isolate *isolate, bool value) |
Static Public Member Functions inherited from v8::Value | |
| template<class T > | |
| static Value * | Cast (T *value) |
A primitive boolean value (ECMA-262, 4.3.14).
Either the true or false value.
Definition at line 6416 of file v8.h.
References v8::False(), and v8::True().
Here is the call graph for this function:| bool v8::Boolean::Value | ( | ) | const |
Definition at line 4950 of file api.cc.
References v8::Utils::OpenHandle().
Here is the call graph for this function: