#include <v8.h>
Public Member Functions | |
| V8_INLINE (bool IsUndefined() const) | |
| V8_INLINE (bool IsNull() const) | |
| bool | IsTrue () const |
| bool | IsFalse () const |
| V8_INLINE (bool IsString() const) | |
| bool | IsFunction () const |
| bool | IsArray () const |
| bool | IsObject () const |
| bool | IsBoolean () const |
| bool | IsNumber () const |
| bool | IsExternal () const |
| bool | IsInt32 () const |
| bool | IsUint32 () const |
| bool | IsDate () const |
| bool | IsBooleanObject () const |
| bool | IsNumberObject () const |
| bool | IsStringObject () const |
| bool | IsNativeError () const |
| bool | IsRegExp () const |
| 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 |
| bool | BooleanValue () const |
| double | NumberValue () const |
| int64_t | IntegerValue () const |
| uint32_t | Uint32Value () const |
| int32_t | Int32Value () const |
| bool | Equals (Handle< Value > that) const |
| bool | StrictEquals (Handle< Value > that) const |
The superclass of all JavaScript values and objects.
| bool v8::Value::IsArray | ( | ) | const |
Returns true if this value is an array.
| bool v8::Value::IsBoolean | ( | ) | const |
Returns true if this value is boolean.
| bool v8::Value::IsBooleanObject | ( | ) | const |
Returns true if this value is a Boolean object.
| bool v8::Value::IsDate | ( | ) | const |
Returns true if this value is a Date.
| bool v8::Value::IsExternal | ( | ) | const |
Returns true if this value is external.
Reimplemented in v8::String.
| bool v8::Value::IsFalse | ( | ) | const |
Returns true if this value is false.
| bool v8::Value::IsFunction | ( | ) | const |
Returns true if this value is a function.
| bool v8::Value::IsInt32 | ( | ) | const |
Returns true if this value is a 32-bit signed integer.
| bool v8::Value::IsNativeError | ( | ) | const |
Returns true if this value is a NativeError.
| bool v8::Value::IsNumber | ( | ) | const |
Returns true if this value is a number.
| bool v8::Value::IsNumberObject | ( | ) | const |
Returns true if this value is a Number object.
| bool v8::Value::IsObject | ( | ) | const |
Returns true if this value is an object.
| bool v8::Value::IsRegExp | ( | ) | const |
Returns true if this value is a RegExp.
| bool v8::Value::IsStringObject | ( | ) | const |
Returns true if this value is a String object.
| bool v8::Value::IsTrue | ( | ) | const |
Returns true if this value is true.
| bool v8::Value::IsUint32 | ( | ) | const |
Returns true if this value is a 32-bit unsigned integer.
Attempts to convert a string to an array index. Returns an empty handle if the conversion fails.
| v8::Value::V8_INLINE | ( | bool IsNull() | const | ) |
Returns true if this value is the null value. See ECMA-262 4.3.11.
| v8::Value::V8_INLINE | ( | bool IsUndefined() | const | ) |
Returns true if this value is the undefined value. See ECMA-262 4.3.10.
| v8::Value::V8_INLINE | ( | bool IsString() | const | ) |
Returns true if this value is an instance of the String type. See ECMA-262 8.4.
1.7.1