Class: Float64Type

Float64Type()

A type representing a 64 bit float

Constructor

new Float64Type()

Construct a 64 bit float type

Source:

Extends

Classes

Float64Type

Methods

marshall(memoryManager, unmarshalledIndex, unmarshalledArgs) → {number}

Marshalls the value to a pointer

Parameters:
Name Type Description
memoryManager MemoryManager

The memory manager

unmarshalledIndex number

The index of value to marshall

unmarshalledArgs Array.<*>

The unmarshalled arguments

Source:
Returns:

The address of a pointer to the value

Type
number

unmarshall(address, memoryManager, unmarshalledIndex, unmarshalledArgs) → {number}

Unmarshall the value from a pointer.

Parameters:
Name Type Description
address number

The address of the pointer to the value

memoryManager MemoryManager

The memory manager

unmarshalledIndex number

The index of the unmarshalled value or -1

unmarshalledArgs Array.<*>

The unmarshalled arguments

Source:
Returns:

The unmarshalled value.

Type
number