class Tuple
A class that represents the tuple type. The tuple type is able to represent a composite type of one or more types accessed by index.
Extends
Methods
string
name
( )Returns “tuple”
string
__toString
( )Returns type representation in CQL, e.g. tuple<varchar, int>
array
types
( )Returns types of values
Creates a new Type\Tuple
from the given values. When no values given, creates a tuple with null for the values.