v8  3.28.71 (node 0.12.18)
V8 is Google's open source JavaScript engine
Value Class Reference

#include <v8.h>

Inheritance diagram for Value:
Collaboration diagram for Value:

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 IsSymbol () 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 IsSymbolObject () const
 
bool IsNativeError () const
 
bool IsRegExp () const
 
bool IsPromise () const
 
bool IsArrayBuffer () const
 
bool IsArrayBufferView () const
 
bool IsTypedArray () const
 
bool IsUint8Array () const
 
bool IsUint8ClampedArray () const
 
bool IsInt8Array () const
 
bool IsUint16Array () const
 
bool IsInt16Array () const
 
bool IsUint32Array () const
 
bool IsInt32Array () const
 
bool IsFloat32Array () const
 
bool IsFloat64Array () const
 
bool IsDataView () const
 
Local< BooleanToBoolean () const
 
Local< NumberToNumber () const
 
Local< StringToString () const
 
Local< StringToDetailString () const
 
Local< ObjectToObject () const
 
Local< IntegerToInteger () const
 
Local< Uint32ToUint32 () const
 
Local< Int32ToInt32 () const
 
Local< Uint32ToArrayIndex () 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
 
bool SameValue (Handle< Value > that) const
 
template<class T >
ValueCast (T *value)
 

Static Public Member Functions

template<class T >
static V8_INLINE ValueCast (T *value)
 

Detailed Description

The superclass of all JavaScript values and objects.

Definition at line 1345 of file v8.h.

Member Function Documentation

◆ BooleanValue()

bool BooleanValue ( ) const

◆ Cast() [1/2]

static V8_INLINE Value* Cast ( T *  value)
static

◆ Cast() [2/2]

Value* Cast ( T *  value)

Definition at line 6336 of file v8.h.

◆ Equals()

bool Equals ( Handle< Value that) const

JS ==

◆ Int32Value()

int32_t Int32Value ( ) const

◆ IntegerValue()

int64_t IntegerValue ( ) const

◆ IsArray()

bool IsArray ( ) const

Returns true if this value is an array.

◆ IsArrayBuffer()

bool IsArrayBuffer ( ) const

Returns true if this value is an ArrayBuffer. This is an experimental feature.

◆ IsArrayBufferView()

bool IsArrayBufferView ( ) const

Returns true if this value is an ArrayBufferView. This is an experimental feature.

◆ IsBoolean()

bool IsBoolean ( ) const

Returns true if this value is boolean.

◆ IsBooleanObject()

bool IsBooleanObject ( ) const

Returns true if this value is a Boolean object.

◆ IsDataView()

bool IsDataView ( ) const

Returns true if this value is a DataView. This is an experimental feature.

◆ IsDate()

bool IsDate ( ) const

Returns true if this value is a Date.

◆ IsExternal()

bool IsExternal ( ) const

Returns true if this value is external.

◆ IsFalse()

bool IsFalse ( ) const

Returns true if this value is false.

◆ IsFloat32Array()

bool IsFloat32Array ( ) const

Returns true if this value is a Float32Array. This is an experimental feature.

◆ IsFloat64Array()

bool IsFloat64Array ( ) const

Returns true if this value is a Float64Array. This is an experimental feature.

◆ IsFunction()

bool IsFunction ( ) const

Returns true if this value is a function.

◆ IsInt16Array()

bool IsInt16Array ( ) const

Returns true if this value is an Int16Array. This is an experimental feature.

◆ IsInt32()

bool IsInt32 ( ) const

Returns true if this value is a 32-bit signed integer.

◆ IsInt32Array()

bool IsInt32Array ( ) const

Returns true if this value is an Int32Array. This is an experimental feature.

◆ IsInt8Array()

bool IsInt8Array ( ) const

Returns true if this value is an Int8Array. This is an experimental feature.

◆ IsNativeError()

bool IsNativeError ( ) const

Returns true if this value is a NativeError.

◆ IsNull()

bool IsNull ( ) const

Returns true if this value is the null value. See ECMA-262 4.3.11.

Definition at line 6301 of file v8.h.

◆ IsNumber()

bool IsNumber ( ) const

Returns true if this value is a number.

◆ IsNumberObject()

bool IsNumberObject ( ) const

Returns true if this value is a Number object.

◆ IsObject()

bool IsObject ( ) const

Returns true if this value is an object.

◆ IsPromise()

bool IsPromise ( ) const

Returns true if this value is a Promise. This is an experimental feature.

◆ IsRegExp()

bool IsRegExp ( ) const

Returns true if this value is a RegExp.

◆ IsString()

bool IsString ( ) const

Returns true if this value is an instance of the String type. See ECMA-262 8.4.

Definition at line 6319 of file v8.h.

◆ IsStringObject()

bool IsStringObject ( ) const

Returns true if this value is a String object.

◆ IsSymbol()

bool IsSymbol ( ) const

Returns true if this value is a symbol. This is an experimental feature.

◆ IsSymbolObject()

bool IsSymbolObject ( ) const

Returns true if this value is a Symbol object. This is an experimental feature.

◆ IsTrue()

bool IsTrue ( ) const

Returns true if this value is true.

◆ IsTypedArray()

bool IsTypedArray ( ) const

Returns true if this value is one of TypedArrays. This is an experimental feature.

◆ IsUint16Array()

bool IsUint16Array ( ) const

Returns true if this value is an Uint16Array. This is an experimental feature.

◆ IsUint32()

bool IsUint32 ( ) const

Returns true if this value is a 32-bit unsigned integer.

◆ IsUint32Array()

bool IsUint32Array ( ) const

Returns true if this value is an Uint32Array. This is an experimental feature.

◆ IsUint8Array()

bool IsUint8Array ( ) const

Returns true if this value is an Uint8Array. This is an experimental feature.

◆ IsUint8ClampedArray()

bool IsUint8ClampedArray ( ) const

Returns true if this value is an Uint8ClampedArray. This is an experimental feature.

◆ IsUndefined()

bool IsUndefined ( ) const

Returns true if this value is the undefined value. See ECMA-262 4.3.10.

Definition at line 6283 of file v8.h.

◆ NumberValue()

double NumberValue ( ) const

◆ SameValue()

bool SameValue ( Handle< Value that) const

◆ StrictEquals()

bool StrictEquals ( Handle< Value that) const

◆ ToArrayIndex()

Local<Uint32> ToArrayIndex ( ) const

Attempts to convert a string to an array index. Returns an empty handle if the conversion fails.

◆ ToBoolean()

Local<Boolean> ToBoolean ( ) const

◆ ToDetailString()

Local<String> ToDetailString ( ) const

◆ ToInt32()

Local<Int32> ToInt32 ( ) const

◆ ToInteger()

Local<Integer> ToInteger ( ) const

◆ ToNumber()

Local<Number> ToNumber ( ) const

◆ ToObject()

Local<Object> ToObject ( ) const

◆ ToString()

Local<String> ToString ( ) const

◆ ToUint32()

Local<Uint32> ToUint32 ( ) const

◆ Uint32Value()

uint32_t Uint32Value ( ) const

The documentation for this class was generated from the following file: