Class/Object

com.twitter.finagle.Stack

Node

Related Docs: object Node | package Stack

Permalink

case class Node[T](head: Head, mk: (Params, Stack[T]) ⇒ Stack[T], next: Stack[T]) extends Stack[T] with Product with Serializable

Nodes materialize by transforming the underlying stack in some way.

Linear Supertypes
Serializable, Serializable, Product, Equals, Stack[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Node
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Stack
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Node(head: Head, mk: (Params, Stack[T]) ⇒ Stack[T], next: Stack[T])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++(right: Stack[T]): Stack[T]

    Permalink

    Produce a new stack representing the concatenation of this with right.

    Produce a new stack representing the concatenation of this with right. Note that this replaces the terminating element of this.

    Definition Classes
    Stack
  4. def +:(stk: Stackable[T]): Stack[T]

    Permalink

    A copy of this Stack with stk prepended.

    A copy of this Stack with stk prepended.

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

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

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def concat(right: Stack[T]): Stack[T]

    Permalink

    Produce a new stack representing the concatenation of this with right.

    Produce a new stack representing the concatenation of this with right. Note that this replaces the terminating element of this.

    Alias for Stack.++.

    Definition Classes
    Stack
  9. def contains(role: Role): Boolean

    Permalink

    Returns whether the stack contains a given role or not.

    Returns whether the stack contains a given role or not.

    Definition Classes
    Stack
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. final def exists(pred: (Stack[T]) ⇒ Boolean): Boolean

    Permalink

    Traverse the stack, until you find that pred has been evaluated to true.

    Traverse the stack, until you find that pred has been evaluated to true. If pred finds an element, return true, otherwise, false.

    Definition Classes
    Stack
    Annotations
    @tailrec()
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def foreach(fn: (Stack[T]) ⇒ Unit): Unit

    Permalink

    Traverse the stack, invoking fn on each element.

    Traverse the stack, invoking fn on each element.

    Definition Classes
    Stack
    Annotations
    @tailrec()
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. val head: Head

    Permalink

    The head field of the Stack composes all associated metadata of the topmost element of the stack.

    The head field of the Stack composes all associated metadata of the topmost element of the stack.

    Definition Classes
    NodeStack
    Note

    head does not give access to the value T, use make instead.

    See also

    Stack.Head

  16. def insertAfter[U](target: Role, insertion: U)(implicit csf: CanStackFrom[U, T]): Stack[T]

    Permalink

    Insert the given Stackable after the stack elements matching the argument role.

    Insert the given Stackable after the stack elements matching the argument role. If no elements match the role, then an unmodified stack is returned. insertion must conform to typeclass CanStackFrom.

    Definition Classes
    Stack
  17. def insertAfter(target: Role, insertion: Stackable[T]): Stack[T]

    Permalink

    Insert the given Stackable after the stack elements matching the argument role.

    Insert the given Stackable after the stack elements matching the argument role. If no elements match the role, then an unmodified stack is returned.

    Definition Classes
    Stack
  18. def insertBefore[U](target: Role, insertion: U)(implicit csf: CanStackFrom[U, T]): Stack[T]

    Permalink

    Insert the given Stackable before the stack elements matching the argument role.

    Insert the given Stackable before the stack elements matching the argument role. If no elements match the role, then an unmodified stack is returned. insertion must conform to typeclass CanStackFrom.

    Definition Classes
    Stack
  19. def insertBefore(target: Role, insertion: Stackable[T]): Stack[T]

    Permalink

    Insert the given Stackable before the stack elements matching the argument role.

    Insert the given Stackable before the stack elements matching the argument role. If no elements match the role, then an unmodified stack is returned.

    Definition Classes
    Stack
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. def make(params: Params): T

    Permalink

    Materialize the current stack with the given parameters, producing a T-typed value representing the current configuration.

    Materialize the current stack with the given parameters, producing a T-typed value representing the current configuration.

    Definition Classes
    NodeStack
  22. val mk: (Params, Stack[T]) ⇒ Stack[T]

    Permalink
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. val next: Stack[T]

    Permalink
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def prepend(stk: Stackable[T]): Stack[T]

    Permalink

    A copy of this Stack with stk prepended.

    A copy of this Stack with stk prepended.

    An alias for Stack.+:.

    Definition Classes
    Stack
  28. def remove(target: Role): Stack[T]

    Permalink

    Remove all nodes in the stack that match the target role.

    Remove all nodes in the stack that match the target role. Leaf nodes are not removable.

    Definition Classes
    Stack
  29. def replace[U](target: Role, replacement: U)(implicit csf: CanStackFrom[U, T]): Stack[T]

    Permalink

    Replace any stack elements matching the argument role with a given Stackable.

    Replace any stack elements matching the argument role with a given Stackable. If no elements match the role, then an unmodified stack is returned. replacement must conform to typeclass CanStackFrom.

    Definition Classes
    Stack
  30. def replace(target: Role, replacement: Stackable[T]): Stack[T]

    Permalink

    Replace any stack elements matching the argument role with a given Stackable.

    Replace any stack elements matching the argument role with a given Stackable. If no elements match the role, then an unmodified stack is returned.

    Definition Classes
    Stack
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def tails: Iterator[Stack[T]]

    Permalink

    Enumerate each well-formed stack contained within this stack.

    Enumerate each well-formed stack contained within this stack.

    Definition Classes
    Stack
  33. def toString(): String

    Permalink
    Definition Classes
    Stack → AnyRef → Any
  34. def transform(fn: (Stack[T]) ⇒ Stack[T]): Stack[T]

    Permalink

    Transform one stack to another by applying fn on each element; the map traverses on the element produced by fn, not the original stack.

    Transform one stack to another by applying fn on each element; the map traverses on the element produced by fn, not the original stack.

    Attributes
    protected
    Definition Classes
    Stack
  35. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Stack[T]

Inherited from AnyRef

Inherited from Any

Ungrouped