Public Member Functions

v8::Value Class Reference

#include <v8.h>

Inheritance diagram for v8::Value:
v8::Data v8::External v8::Object v8::Primitive v8::Array v8::BooleanObject v8::Date v8::Function v8::NumberObject v8::RegExp v8::StringObject v8::Boolean v8::Number v8::String

List of all members.

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< 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

Detailed Description

The superclass of all JavaScript values and objects.


Member Function Documentation

bool v8::Value::Equals ( Handle< Value that  )  const

JS ==

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.

Local<Uint32> v8::Value::ToArrayIndex (  )  const

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.


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