scala.slick.ast

Apply

case class Apply(sym: Symbol, children: Seq[Node]) extends SimpleNode with SimpleRefNode with Product with Serializable

A function call expression.

Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, SimpleRefNode, RefNode, SimpleNode, Node, NodeGenerator, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Apply
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. SimpleRefNode
  7. RefNode
  8. SimpleNode
  9. Node
  10. NodeGenerator
  11. AnyRef
  12. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Apply(sym: Symbol, children: Seq[Node])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. val children: Seq[Node]

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def nodeChildNames: Iterable[String]

    Names for the child nodes to show in AST dumps.

    Names for the child nodes to show in AST dumps. Defaults to a numbered sequence starting at 0 but can be overridden by subclasses to produce more suitable names.

    Definition Classes
    Node
  15. def nodeChildren: Seq[Node]

    All child nodes of this node.

    All child nodes of this node. Must be implemented by subclasses.

    Definition Classes
    ApplyNode
  16. def nodeDelegate: Node

    Definition Classes
    NodeNodeGenerator
  17. def nodeIntrinsicSymbol: IntrinsicSymbol

    The intrinsic symbol that points to this Node object.

    The intrinsic symbol that points to this Node object.

    Definition Classes
    Node
  18. def nodeMapChildren(f: (Node) ⇒ Node): Node

    Apply a mapping function to all children of this node and recreate the node with the new children.

    Apply a mapping function to all children of this node and recreate the node with the new children. If all new children are identical to the old ones, this node is returned.

    Definition Classes
    SimpleNodeNode
  19. final def nodeMapNodes(s: Iterable[Node], f: (Node) ⇒ Node): Option[IndexedSeq[Node]]

    Attributes
    protected[this]
    Definition Classes
    Node
  20. def nodeMapReferences(f: (Symbol) ⇒ Symbol): Node

    Definition Classes
    SimpleRefNodeRefNode
  21. def nodeRebuild(ch: IndexedSeq[Node]): Apply

    Attributes
    protected[this]
    Definition Classes
    ApplySimpleNode
  22. def nodeRebuildWithReferences(syms: IndexedSeq[Symbol]): Apply

    Definition Classes
    ApplySimpleRefNode
  23. def nodeReferences: Seq[Symbol]

    Definition Classes
    ApplyRefNode
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. val sym: Symbol

  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    ApplyNode → AnyRef → Any
  29. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  31. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Product

Inherited from Equals

Inherited from SimpleRefNode

Inherited from RefNode

Inherited from SimpleNode

Inherited from Node

Inherited from NodeGenerator

Inherited from AnyRef

Inherited from Any

Ungrouped