TraversableFromSet

org.encalmo.data.Traversable.TraversableFromSet
final class TraversableFromSet[N](x: Set[N]) extends Traversable[N]

Attributes

Graph
Supertypes
trait Traversable[N]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

inline override def contains(item: N): Boolean

Attributes

Definition Classes
inline override def exists(p: N => Boolean): Boolean

Attributes

Definition Classes
inline override def find(p: N => Boolean): Option[N]

Attributes

Definition Classes
inline override def foldLeft[R](initial: R)(f: (R, N) => R): R

Attributes

Definition Classes
inline override def foreach[U](f: N => U): Unit

Attributes

Definition Classes
inline override def isEmpty: Boolean

Attributes

Definition Classes
inline override def maxBy[B](f: N => B)(implicit ord: Ordering[B]): N

Attributes

Definition Classes
inline override def minBy[B](f: N => B)(implicit ord: Ordering[B]): N

Attributes

Definition Classes
inline override def size: Int

Attributes

Definition Classes
inline override def toMutableSeq: Seq[N]

Attributes

Definition Classes
inline override def toSeq: Seq[N]

Attributes

Definition Classes
inline override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Traversable -> Any

Inherited methods

def drop(count: Int): Traversable[N]

Attributes

Inherited from:
Traversable
def filter(p: N => Boolean): Traversable[N]

Attributes

Inherited from:
Traversable
def filterNot(p: N => Boolean): Traversable[N]

Attributes

Inherited from:
Traversable
def get(index: Int): N

Attributes

Inherited from:
Traversable
def map[M](m: N => M): Traversable[M]

Attributes

Inherited from:
Traversable
inline def nonEmpty: Boolean

Attributes

Inherited from:
Traversable
inline def sameElements[B >: N](that: IterableOnce[B]): Boolean

Attributes

Inherited from:
Traversable
def sortedValuesOfGroupBy[K](f: N => K)(s: Iterable[N] => Int): Traversable[Traversable[N]]

Attributes

Inherited from:
Traversable
def take(count: Int): Traversable[N]

Attributes

Inherited from:
Traversable

Attributes

Inherited from:
Traversable
def toHashSet: HashSet[N]

Attributes

Inherited from:
Traversable
def withFilter(p: N => Boolean): Traversable[N]

Attributes

Inherited from:
Traversable