ArrayTuple

Constructors

this
this(int len)
Undocumented in source.
this
this(Collection!(Variant) c)
Undocumented in source.

Members

Functions

addValue
Tuple addValue(Variant value)
Undocumented in source. Be warned that the author may not have intended to support it.
clear
void clear()
Undocumented in source. Be warned that the author may not have intended to support it.
getBoolean
bool getBoolean(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
getBuffer
byte[] getBuffer(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
getDouble
double getDouble(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
getFloat
float getFloat(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
getInteger
int getInteger(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
getLong
long getLong(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
getShort
short getShort(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
getString
string getString(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
getValue
Variant getValue(int pos)
Undocumented in source. Be warned that the author may not have intended to support it.
size
int size()
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

EMPTY
Tuple EMPTY()
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Tuple

tuple
Tuple tuple()

@return a new empty tuple

of
Tuple of(Args elts)

Create a tuple of an arbitrary number of elements.

getValue
Variant getValue(int pos)
opIndex
alias opIndex = getValue

Get an object value at {@code pos}.

getBoolean
bool getBoolean(int pos)

Get a boolean value at {@code pos}.

getShort
short getShort(int pos)

Get a short value at {@code pos}.

getInteger
int getInteger(int pos)

Get an integer value at {@code pos}.

getLong
long getLong(int pos)

Get a long value at {@code pos}.

getFloat
float getFloat(int pos)

Get a float value at {@code pos}.

getDouble
double getDouble(int pos)

Get a double value at {@code pos}.

getString
string getString(int pos)

Get a string value at {@code pos}.

getBuffer
byte[] getBuffer(int pos)

Get a buffer value at {@code pos}.

addValue
Tuple addValue(Variant value)

Add an object value at the end of the tuple.

size
int size()

@return the tuple size

clear
void clear()
Undocumented in source.

Meta