slick.ast

NodeOps

Related Doc: package ast

final class NodeOps extends AnyVal

Extra methods for Nodes.

Source
Util.scala
Linear Supertypes
AnyVal, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NodeOps
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NodeOps(tree: Node)

Value Members

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

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

    Definition Classes
    Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from NodeOps to any2stringadd[NodeOps] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (NodeOps, B)

    Implicit information
    This member is added by an implicit conversion from NodeOps to ArrowAssoc[NodeOps] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

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

    Definition Classes
    Any
  7. def collect[T](pf: PartialFunction[Node, T], stopOnMatch: Boolean = false): Seq[T]

    Annotations
    @inline()
  8. def collectAll[T](pf: PartialFunction[Node, Seq[T]]): Seq[T]

  9. def ensuring(cond: (NodeOps) ⇒ Boolean, msg: ⇒ Any): NodeOps

    Implicit information
    This member is added by an implicit conversion from NodeOps to Ensuring[NodeOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (NodeOps) ⇒ Boolean): NodeOps

    Implicit information
    This member is added by an implicit conversion from NodeOps to Ensuring[NodeOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): NodeOps

    Implicit information
    This member is added by an implicit conversion from NodeOps to Ensuring[NodeOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): NodeOps

    Implicit information
    This member is added by an implicit conversion from NodeOps to Ensuring[NodeOps] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def findNode(p: (Node) ⇒ Boolean): Option[Node]

  14. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from NodeOps to StringFormat[NodeOps] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. def getClass(): Class[_ <: AnyVal]

    Definition Classes
    AnyVal → Any
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. def replace(f: PartialFunction[Node, Node], keepType: Boolean = false, bottomUp: Boolean = false): Node

  18. def replaceFold[T](z: T)(f: PartialFunction[(Node, T, Node), (Node, T)]): (Node, T)

    Replace nodes in a bottom-up traversal with an extra state value that gets passed through the traversal.

    Replace nodes in a bottom-up traversal with an extra state value that gets passed through the traversal. Types are never kept or rebuilt when a node changes.

    f

    The replacement function that takes the current Node (whose children have already been transformed), the current state, and the original (untransformed) version of the Node.

  19. def replaceInvalidate(f: PartialFunction[(Node, Set[TypeSymbol], Node), (Node, Set[TypeSymbol])]): Node

    Replace nodes in a bottom-up traversal while invalidating TypeSymbols.

    Replace nodes in a bottom-up traversal while invalidating TypeSymbols. Any later references to the invalidated TypeSymbols have their types unassigned, so that the whole tree can be retyped afterwards to get the correct new TypeSymbols in.

  20. def select(field: TermSymbol): Node

  21. def toString(): String

    Definition Classes
    Any
  22. val tree: Node

  23. def untypeReferences(invalid: Set[TypeSymbol]): Node

  24. def [B](y: B): (NodeOps, B)

    Implicit information
    This member is added by an implicit conversion from NodeOps to ArrowAssoc[NodeOps] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from NodeOps to any2stringadd[NodeOps]

Inherited by implicit conversion StringFormat from NodeOps to StringFormat[NodeOps]

Inherited by implicit conversion Ensuring from NodeOps to Ensuring[NodeOps]

Inherited by implicit conversion ArrowAssoc from NodeOps to ArrowAssoc[NodeOps]

Ungrouped