Method |
Description |
|
__construct ( cassandra\Type $type ) |
Creates a new collection of a given type. |
|
add ( mixed $value ) : boolean |
Adds a value to this set. |
|
count ( ) : integer |
Total number of elements in this set |
|
current ( ) : mixed |
Current element for iteration |
|
has ( mixed $value ) : boolean |
Returns whether a value is in this set. |
|
key ( ) : integer |
Current key for iteration |
|
next ( ) : void |
Move internal iterator forward |
|
remove ( mixed $value ) : boolean |
Removes a value to this set. |
|
rewind ( ) : void |
Rewind internal iterator |
|
type ( ) : cassandra\Type |
The type of this set. |
|
valid ( ) : boolean |
Check whether a current value exists |
|
values ( ) : array |
Array of values in this set. |
|