Stack

net.walend.disentangle.graph.semiring.Stack
case class Stack[A](var list: List[A])

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def filter(p: A => Boolean): Stack[A]
def map[B](f: A => B): Stack[B]
def nonEmpty: Boolean
def pop(): A
def push(elem: A): Stack.this.type

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product