Tuples

ldbc.core.interpreter.Tuples
object Tuples

An object with methods and types that perform processing on one or more informational Tuples.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Tuples.type

Members list

Type members

Types

type IndexOf[T <: Tuple, E] = T match { case E *: _$1 => 0 case _$2 *: es => S[IndexOf[es, E]] }

Type for obtaining location information inside the Tuple of the specified type.

Type for obtaining location information inside the Tuple of the specified type.

Attributes

type IsColumn[T <: Tuple] = T match { case EmptyTuple => false case Column[t] => true case Column[t] *: EmptyTuple => true case Column[t] *: ts => IsColumn[ts] }

Type to verify that a tuple of a given type consists only of the type wrapped in Column.

Type to verify that a tuple of a given type consists only of the type wrapped in Column.

Attributes