ldbc.query.builder.interpreter

Members list

Type members

Classlikes

object Tuples

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

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

Attributes

Source
Tuples.scala
Supertypes
class Object
trait Matchable
class Any
Self type
Tuples.type

Types

type Extract[T] = T match { case Option[t] => Extract[t] case Array[t] => Extract[t] case List[t] => Extract[t] case Seq[t] => Extract[t] case Set[t] => Extract[t] case Any => T }

A type function to pull a type parameter it has from a type with one type parameter.

A type function to pull a type parameter it has from a type with one type parameter.

Attributes

Source
Extract.scala
type ExtractOption[T] = T match { case Option[t] => Extract[t] case Any => T }

A type function that derives its type from the type parameters that Option has.

A type function that derives its type from the type parameters that Option has.

Attributes

Source
Extract.scala