Method |
Description |
|
__construct ( array $types ) |
Creates a new tuple with the given types. |
|
count ( ) : integer |
Total number of elements in this tuple |
|
current ( ) : mixed |
Current element for iteration |
|
get ( integer $index ) : mixed |
Retrieves the value at a given index. |
|
key ( ) : integer |
Current key for iteration |
|
next ( ) : void |
Move internal iterator forward |
|
rewind ( ) : void |
Rewind internal iterator |
|
set ( integer $index, mixed $value ) : void |
Sets the value at index in this tuple . |
|
type ( ) : cassandra\Type |
The type of this tuple. |
|
valid ( ) : boolean |
Check whether a current value exists |
|
values ( ) : array |
Array of values in this tuple. |
|