trait EdgeSet extends AnySet[EdgeT] with ExtSetMethods[EdgeT] with Serializable
- Alphabetic
- By Inheritance
- EdgeSet
- Serializable
- ExtSetMethods
- FilterableSet
- Set
- Equals
- SetOps
- Function1
- Iterable
- IterableFactoryDefaults
- IterableOps
- IterableOnceOps
- IterableOnce
- AnyRef
- Any
- by iterableOnceExtensionMethods
- by EdgeAssoc
- by predicateToNodePredicate
- by TraversableEnrichments
- by anyToNode
- by ChainingOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def contains(node: NodeT): Boolean
- abstract def contains(elem: EdgeT): Boolean
- Definition Classes
- SetOps
- abstract def find(outerEdge: E[N]): Option[EdgeT]
Finds the inner edge corresponding to
outerEdge
.Finds the inner edge corresponding to
outerEdge
.- returns
the inner node wrapped by
Some
if found, otherwise None.
- abstract def iterator: Iterator[EdgeT]
- Definition Classes
- IterableOnce
Concrete Value Members
- final def &(that: Set[EdgeT]): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @inline()
- final def &~(that: Set[EdgeT]): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @inline()
- final def ++(that: scala.collection.IterableOnce[EdgeT]): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @inline()
- final def ++[B >: EdgeT](suffix: scala.collection.IterableOnce[B]): Set[B]
- Definition Classes
- IterableOps
- Annotations
- @inline()
- final def addString(b: StringBuilder): StringBuilder
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- IterableOnceOps
- def andThen[A](g: (Boolean) => A): (EdgeT) => A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- final def apply(elem: EdgeT): Boolean
- Definition Classes
- SetOps → Function1
- Annotations
- @inline()
- def asSortedString(separator: String = GraphBase.defaultSeparator)(implicit ord: EdgeOrdering = defaultEdgeOrdering): String
Sorts all edges according to
ord
and concatenates them usingseparator
.Sorts all edges according to
ord
and concatenates them usingseparator
.- separator
to separate edges by.
- ord
custom ordering.
- returns
sorted and concatenated string representation of this edge set.
- def canEqual(that: Any): Boolean
- Definition Classes
- Set → Equals
- def collect[B](pf: PartialFunction[EdgeT, B]): Set[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def collectFirst[B](pf: PartialFunction[EdgeT, B]): Option[B]
- Definition Classes
- IterableOnceOps
- def compose[A](g: (A) => EdgeT): (A) => Boolean
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def concat(that: scala.collection.IterableOnce[EdgeT]): Set[EdgeT]
- Definition Classes
- SetOps
- def concat[B >: EdgeT](suffix: scala.collection.IterableOnce[B]): Set[B]
- Definition Classes
- IterableOps
- def copyToArray[B >: EdgeT](xs: Array[B], start: Int, len: Int): Int
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: EdgeT](xs: Array[B], start: Int): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def copyToArray[B >: EdgeT](xs: Array[B]): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def corresponds[B](that: scala.collection.IterableOnce[B])(p: (EdgeT, B) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def count(p: (EdgeT) => Boolean): Int
- Definition Classes
- IterableOnceOps
- def diff(that: AnySet[EdgeT]): Set[EdgeT]
- Definition Classes
- EdgeSet → SetOps
- final def draw(random: Random): EdgeT
Returns a random element of the set if it is
nonEmpty
otherwise throwsIllegalArgumentException
.Returns a random element of the set if it is
nonEmpty
otherwise throwsIllegalArgumentException
. Note that currently a near- but no true-uniform distribution is granted to allow for O(1) implementation.- random
a random generator; it is essential that
random
be instantiated by the caller just once for any sequence of calls
- Definition Classes
- EdgeSet → ExtSetMethods
- def drop(n: Int): Set[EdgeT]
- Definition Classes
- IterableOps → IterableOnceOps
- def dropRight(n: Int): Set[EdgeT]
- Definition Classes
- IterableOps
- def dropWhile(p: (EdgeT) => Boolean): Set[EdgeT]
- Definition Classes
- IterableOps → IterableOnceOps
- def empty: Set[EdgeT]
- Definition Classes
- IterableFactoryDefaults → IterableOps
- def equals(that: Any): Boolean
- Definition Classes
- Set → Equals → AnyRef → Any
- def exists(p: (EdgeT) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def filter(pred: (EdgeT) => Boolean): Set[EdgeT]
- Definition Classes
- IterableOps → IterableOnceOps
- def filterNot(pred: (EdgeT) => Boolean): Set[EdgeT]
- Definition Classes
- IterableOps → IterableOnceOps
- def find(p: (EdgeT) => Boolean): Option[EdgeT]
- Definition Classes
- IterableOnceOps
- final def findElem[B](other: B, correspond: (EdgeT, B) => Boolean): EdgeT
Finds an entry in the collection based on
toMatch
'shashCode
and a correspondence function but not on the argument type.Finds an entry in the collection based on
toMatch
'shashCode
and a correspondence function but not on the argument type.- correspond
function returning whether a given entry corresponds to
other
- returns
the entry corresponding to
toMatch
or null if not contained
- Definition Classes
- EdgeSet → ExtSetMethods
- def findElem(elem: EdgeT): Option[EdgeT]
- Definition Classes
- ExtSetMethods
- def flatMap[B](f: (EdgeT) => scala.collection.IterableOnce[B]): Set[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def flatten[B](implicit asIterable: (EdgeT) => scala.collection.IterableOnce[B]): Set[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def fold[A1 >: EdgeT](z: A1)(op: (A1, A1) => A1): A1
- Definition Classes
- IterableOnceOps
- def foldLeft[B](z: B)(op: (B, EdgeT) => B): B
- Definition Classes
- IterableOnceOps
- def foldRight[B](z: B)(op: (EdgeT, B) => B): B
- Definition Classes
- IterableOnceOps
- def forall(p: (EdgeT) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def foreach[U](f: (EdgeT) => U): Unit
- Definition Classes
- IterableOnceOps
- def groupBy[K](f: (EdgeT) => K): Map[K, Set[EdgeT]]
- Definition Classes
- IterableOps
- def groupMap[K, B](key: (EdgeT) => K)(f: (EdgeT) => B): Map[K, Set[B]]
- Definition Classes
- IterableOps
- def groupMapReduce[K, B](key: (EdgeT) => K)(f: (EdgeT) => B)(reduce: (B, B) => B): Map[K, B]
- Definition Classes
- IterableOps
- def grouped(size: Int): Iterator[Set[EdgeT]]
- Definition Classes
- IterableOps
- def hashCode(): Int
- Definition Classes
- Set → AnyRef → Any
- def head: EdgeT
- Definition Classes
- IterableOps
- def headOption: Option[EdgeT]
- Definition Classes
- IterableOps
- def init: Set[EdgeT]
- Definition Classes
- IterableOps
- def inits: Iterator[Set[EdgeT]]
- Definition Classes
- IterableOps
- def intersect(that: Set[EdgeT]): Set[EdgeT]
- Definition Classes
- SetOps
- def isDefined: Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toOuterNode[EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
- Definition Classes
- Param
- final def isEdge: Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toOuterNode[EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
- Definition Classes
- Param
- def isEmpty: Boolean
- Definition Classes
- IterableOnceOps
- def isIn: Boolean
- def isNode: Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toOuterNode[EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
- Definition Classes
- NodeParam
- final def isOut: Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toOuterNode[EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
- Definition Classes
- Param
- def isTraversableAgain: Boolean
- Definition Classes
- IterableOps → IterableOnceOps
- def iterableFactory: IterableFactory[Set]
- Definition Classes
- Set → Iterable → IterableOps
- def knownSize: Int
- Definition Classes
- IterableOnce
- def last: EdgeT
- Definition Classes
- IterableOps
- def lastOption: Option[EdgeT]
- Definition Classes
- IterableOps
- def lazyZip[B](that: Iterable[B]): LazyZip2[EdgeT, B, EdgeSet.this.type]
- Definition Classes
- Iterable
- def map[B](f: (EdgeT) => B): Set[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def max[B >: EdgeT](implicit ord: Ordering[B]): EdgeT
- Definition Classes
- IterableOnceOps
- def maxArity: Int
The maximum arity of all edges in this edge set.
- def maxBy[B](f: (EdgeT) => B)(implicit cmp: Ordering[B]): EdgeT
- Definition Classes
- IterableOnceOps
- def maxByOption[B](f: (EdgeT) => B)(implicit cmp: Ordering[B]): Option[EdgeT]
- Definition Classes
- IterableOnceOps
- def maxOption[B >: EdgeT](implicit ord: Ordering[B]): Option[EdgeT]
- Definition Classes
- IterableOnceOps
- def min[B >: EdgeT](implicit ord: Ordering[B]): EdgeT
- Definition Classes
- IterableOnceOps
- def minBy[B](f: (EdgeT) => B)(implicit cmp: Ordering[B]): EdgeT
- Definition Classes
- IterableOnceOps
- def minByOption[B](f: (EdgeT) => B)(implicit cmp: Ordering[B]): Option[EdgeT]
- Definition Classes
- IterableOnceOps
- def minOption[B >: EdgeT](implicit ord: Ordering[B]): Option[EdgeT]
- Definition Classes
- IterableOnceOps
- final def mkString: String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(sep: String): String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(start: String, sep: String, end: String): String
- Definition Classes
- IterableOnceOps
- val n1: EdgeSet
- Implicit
- This member is added by an implicit conversion from EdgeSet toEdgeAssoc[EdgeSet] performed by method EdgeAssoc in scalax.collection.GraphPredef.
- Definition Classes
- EdgeAssoc
- def nonEmpty: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def partition(p: (EdgeT) => Boolean): (Set[EdgeT], Set[EdgeT])
- Definition Classes
- IterableOps
- def partitionMap[A1, A2](f: (EdgeT) => Either[A1, A2]): (Set[A1], Set[A2])
- Definition Classes
- IterableOps
- def pipe[B](f: (EdgeSet) => B): B
- Implicit
- This member is added by an implicit conversion from EdgeSet toChainingOps[EdgeSet] performed by method ChainingOps in scalax.collection.
- Definition Classes
- ChainingOps
- def product[B >: EdgeT](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- def productElementNames: Iterator[String]
- Implicit
- This member is added by an implicit conversion from EdgeSet toOuterNode[EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
- Definition Classes
- Product
- def reduce[B >: EdgeT](op: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeft[B >: EdgeT](op: (B, EdgeT) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeftOption[B >: EdgeT](op: (B, EdgeT) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceOption[B >: EdgeT](op: (B, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceRight[B >: EdgeT](op: (EdgeT, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceRightOption[B >: EdgeT](op: (EdgeT, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def scan[B >: EdgeT](z: B)(op: (B, B) => B): Set[B]
- Definition Classes
- IterableOps
- def scanLeft[B](z: B)(op: (B, EdgeT) => B): Set[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def scanRight[B](z: B)(op: (EdgeT, B) => B): Set[B]
- Definition Classes
- IterableOps
- val self: EdgeSet
- Implicit
- This member is added by an implicit conversion from EdgeSet toChainingOps[EdgeSet] performed by method ChainingOps in scalax.collection.
- Definition Classes
- ChainingOps
- def size: Int
- Definition Classes
- IterableOnceOps
- def sizeCompare(that: Iterable[_]): Int
- Definition Classes
- IterableOps
- def sizeCompare(otherSize: Int): Int
- Definition Classes
- IterableOps
- final def sizeIs: SizeCompareOps
- Definition Classes
- IterableOps
- Annotations
- @inline()
- def slice(from: Int, until: Int): Set[EdgeT]
- Definition Classes
- IterableOps → IterableOnceOps
- def sliding(size: Int, step: Int): Iterator[Set[EdgeT]]
- Definition Classes
- IterableOps
- def sliding(size: Int): Iterator[Set[EdgeT]]
- Definition Classes
- IterableOps
- def span(p: (EdgeT) => Boolean): (Set[EdgeT], Set[EdgeT])
- Definition Classes
- IterableOps → IterableOnceOps
- def splitAt(n: Int): (Set[EdgeT], Set[EdgeT])
- Definition Classes
- IterableOps → IterableOnceOps
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[EdgeT, S]): S
- Definition Classes
- IterableOnce
- def stringPrefix: String
- Definition Classes
- EdgeSet → Set → Iterable
- def subsetOf(that: Set[EdgeT]): Boolean
- Definition Classes
- SetOps
- def subsets(): Iterator[Set[EdgeT]]
- Definition Classes
- SetOps
- def subsets(len: Int): Iterator[Set[EdgeT]]
- Definition Classes
- SetOps
- def sum[B >: EdgeT](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- val t: AnySet[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toTraversableEnrichments[EdgeT, AnySet] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
- Definition Classes
- TraversableEnrichments
- def tail: Set[EdgeT]
- Definition Classes
- IterableOps
- def tails: Iterator[Set[EdgeT]]
- Definition Classes
- IterableOps
- def take(n: Int): Set[EdgeT]
- Definition Classes
- IterableOps → IterableOnceOps
- def takeRight(n: Int): Set[EdgeT]
- Definition Classes
- IterableOps
- def takeWhile(p: (EdgeT) => Boolean): Set[EdgeT]
- Definition Classes
- IterableOps → IterableOnceOps
- def tap[U](f: (EdgeSet) => U): EdgeSet
- Implicit
- This member is added by an implicit conversion from EdgeSet toChainingOps[EdgeSet] performed by method ChainingOps in scalax.collection.
- Definition Classes
- ChainingOps
- def tapEach[U](f: (EdgeT) => U): Set[EdgeT]
- Definition Classes
- IterableOps → IterableOnceOps
- def to[C1](factory: Factory[EdgeT, C1]): C1
- Definition Classes
- IterableOnceOps
- def toArray[B >: EdgeT](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- IterableOnceOps
- final def toBuffer[B >: EdgeT]: Buffer[B]
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def toIndexedSeq: IndexedSeq[EdgeT]
- Definition Classes
- IterableOnceOps
- def toList: List[EdgeT]
- Definition Classes
- IterableOnceOps
- def toMap[K, V](implicit ev: <:<[EdgeT, (K, V)]): Map[K, V]
- Definition Classes
- IterableOnceOps
- def toOuter: Set[E[N]]
Converts this edge set to a set of outer edges.
- def toOuterNodes[E[+X] <: EdgeLike[X]]: Seq[InParam[EdgeT, E]]
- Implicit
- This member is added by an implicit conversion from EdgeSet toTraversableEnrichments[EdgeT, AnySet] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
- Definition Classes
- TraversableEnrichments
- def toSeq: Seq[EdgeT]
- Definition Classes
- IterableOnceOps
- def toSet[B >: EdgeT]: Set[B]
- Definition Classes
- IterableOnceOps
- def toSortedString(separator: String = GraphBase.defaultSeparator)(implicit ord: EdgeOrdering = defaultEdgeOrdering): String
Sorts all edges according to
ord
, concatenates them usingseparator
and prefixes and parenthesizes the result withstringPrefix
.Sorts all edges according to
ord
, concatenates them usingseparator
and prefixes and parenthesizes the result withstringPrefix
.- separator
to separate edges by.
- ord
custom ordering.
- returns
sorted, concatenated and prefixed string representation of this edge set.
- def toString(): String
- Definition Classes
- Set → Function1 → Iterable → AnyRef → Any
- def toVector: Vector[EdgeT]
- Definition Classes
- IterableOnceOps
- def transpose[B](implicit asIterable: (EdgeT) => Iterable[B]): Set[Set[B]]
- Definition Classes
- IterableOps
- final def union(that: Set[EdgeT]): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @inline()
- def unzip[A1, A2](implicit asPair: (EdgeT) => (A1, A2)): (Set[A1], Set[A2])
- Definition Classes
- IterableOps
- def unzip3[A1, A2, A3](implicit asTriple: (EdgeT) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
- Definition Classes
- IterableOps
- val value: EdgeSet
- def view: View[EdgeT]
- Definition Classes
- IterableOps
- def withFilter(p: (EdgeT) => Boolean): WithFilter[EdgeT, [_]Set[_]]
- Definition Classes
- IterableOps
- def withSetFilter(p: (EdgeT) => Boolean): Set[EdgeT] with FilterableSet[EdgeT]
- Definition Classes
- FilterableSet
- def zip[B](that: scala.collection.IterableOnce[B]): Set[(EdgeT, B)]
- Definition Classes
- IterableOps
- def zipAll[A1 >: EdgeT, B](that: Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
- Definition Classes
- IterableOps
- def zipWithIndex: Set[(EdgeT, Int)]
- Definition Classes
- IterableOps → IterableOnceOps
- final def |(that: Set[EdgeT]): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @inline()
- def ~[N >: N1](n2: N): UnDiEdge[N]
- Implicit
- This member is added by an implicit conversion from EdgeSet toEdgeAssoc[EdgeSet] performed by method EdgeAssoc in scalax.collection.GraphPredef.
- Definition Classes
- EdgeAssoc
- Annotations
- @inline()
- def ~>[N >: N1](n2: N): DiEdge[N]
- Implicit
- This member is added by an implicit conversion from EdgeSet toEdgeAssoc[EdgeSet] performed by method EdgeAssoc in scalax.collection.GraphPredef.
- Definition Classes
- EdgeAssoc
- Annotations
- @inline()
Shadowed Implicit Value Members
- def andThen[A](g: (Boolean) => A): (Param[EdgeT, EI]) => A
- Implicit
- This member is added by an implicit conversion from EdgeSet to(Param[EdgeT, EI]) => Boolean performed by method predicateToNodePredicate in scalax.collection.GraphPredef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: (Param[EdgeT, EI]) => Boolean).andThen(g)
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def apply(v1: Param[EdgeT, EI]): Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet to(Param[EdgeT, EI]) => Boolean performed by method predicateToNodePredicate in scalax.collection.GraphPredef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: (Param[EdgeT, EI]) => Boolean).apply(v1)
- Definition Classes
- Function1
- def compose[A](g: (A) => Param[EdgeT, EI]): (A) => Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet to(Param[EdgeT, EI]) => Boolean performed by method predicateToNodePredicate in scalax.collection.GraphPredef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: (Param[EdgeT, EI]) => Boolean).compose(g)
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def stringPrefix: String
- Implicit
- This member is added by an implicit conversion from EdgeSet toOuterNode[EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: OuterNode[EdgeSet]).stringPrefix
- Definition Classes
- NodeParam
- def toString(): String
- Implicit
- This member is added by an implicit conversion from EdgeSet to(Param[EdgeT, EI]) => Boolean performed by method predicateToNodePredicate in scalax.collection.GraphPredef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: (Param[EdgeT, EI]) => Boolean).toString()
- Definition Classes
- Function1 → AnyRef → Any
- def toString(): String
- Implicit
- This member is added by an implicit conversion from EdgeSet toOuterNode[EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: OuterNode[EdgeSet]).toString()
- Definition Classes
- NodeParam → AnyRef → Any
Deprecated Value Members
- def +(elem1: EdgeT, elem2: EdgeT, elems: EdgeT*): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use ++ with an explicit collection argument instead of + with varargs
- def +(elem: EdgeT): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Consider requiring an immutable Set or fall back to Set.union
- def ++:[B >: EdgeT](that: scala.collection.IterableOnce[B]): Set[B]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable
- def -(elem1: EdgeT, elem2: EdgeT, elems: EdgeT*): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use &- with an explicit collection argument instead of - with varargs
- def -(elem: EdgeT): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Consider requiring an immutable Set or fall back to Set.diff
- def --(that: scala.collection.IterableOnce[EdgeT]): Set[EdgeT]
- Definition Classes
- SetOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Consider requiring an immutable Set
- def /:[B](z: B)(op: (B, EdgeT) => B): B
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT])./:(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foldLeft instead
- final def /:[B](z: B)(op: (B, EdgeT) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
- def :\[B](z: B)(op: (EdgeT, B) => B): B
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).:\(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foldRight instead
- final def :\[B](z: B)(op: (EdgeT, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldRight instead of :\
- def aggregate[B](z: => B)(seqop: (B, EdgeT) => B, combop: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0)
aggregate
is not relevant for sequential collections. UsefoldLeft(z)(seqop)
instead.
- def collectFirst[B](f: PartialFunction[EdgeT, B]): Option[B]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).collectFirst(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.collectFirst(...) instead
- def companion: IterableFactory[[_]Set[_]]
- Definition Classes
- IterableOps
- Annotations
- @deprecated @deprecatedOverriding() @inline()
- Deprecated
(Since version 2.13.0) Use iterableFactory instead
- def copyToBuffer(dest: Buffer[EdgeT]): Unit
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).copyToBuffer(dest)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.copyToBuffer(...) instead
- final def copyToBuffer[B >: EdgeT](dest: Buffer[B]): Unit
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
dest ++= coll
instead
- def count(f: (EdgeT) => Boolean): Int
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).count(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.count(...) instead
- def exists(f: (EdgeT) => Boolean): Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).exists(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.exists(...) instead
- def filter(f: (EdgeT) => Boolean): Iterator[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).filter(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.filter(...) instead
- def find(p: (EdgeT) => Boolean): Option[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).find(p)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.find instead
- def flatMap[B](f: (EdgeT) => scala.collection.IterableOnce[B]): scala.collection.IterableOnce[B]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).flatMap(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable
- def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).fold(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.fold instead
- def foldLeft[B](z: B)(op: (B, EdgeT) => B): B
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).foldLeft(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foldLeft instead
- def foldRight[B](z: B)(op: (EdgeT, B) => B): B
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).foldRight(z)(op)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foldRight instead
- def forall(f: (EdgeT) => Boolean): Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).forall(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.forall(...) instead
- def foreach[U](f: (EdgeT) => U): Unit
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).foreach(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.foreach(...) instead
- def hasDefiniteSize: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
- def isEmpty: Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).isEmpty
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.isEmpty instead
- def map[B](f: (EdgeT) => B): scala.collection.IterableOnce[B]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).map(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable
- def max(implicit ord: Ordering[EdgeT]): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).max(ord)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.max instead
- def maxBy[B](f: (EdgeT) => B)(implicit cmp: Ordering[B]): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).maxBy(f)(cmp)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.maxBy(...) instead
- def min(implicit ord: Ordering[EdgeT]): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).min(ord)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.min instead
- def minBy[B](f: (EdgeT) => B)(implicit cmp: Ordering[B]): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).minBy(f)(cmp)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.minBy(...) instead
- def mkString: String
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).mkString
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.mkString instead
- def mkString(sep: String): String
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).mkString(sep)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.mkString instead
- def mkString(start: String, sep: String, end: String): String
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).mkString(start, sep, end)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.mkString instead
- def nonEmpty: Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).nonEmpty
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.nonEmpty instead
- def product(implicit num: Numeric[EdgeT]): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).product(num)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.product instead
- def reduce(f: (EdgeT, EdgeT) => EdgeT): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).reduce(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.reduce(...) instead
- def reduceLeft(f: (EdgeT, EdgeT) => EdgeT): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).reduceLeft(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.reduceLeft(...) instead
- def reduceLeftOption(f: (EdgeT, EdgeT) => EdgeT): Option[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).reduceLeftOption(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead
- def reduceOption(f: (EdgeT, EdgeT) => EdgeT): Option[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).reduceOption(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.reduceOption(...) instead
- def reduceRight(f: (EdgeT, EdgeT) => EdgeT): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).reduceRight(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.reduceRight(...) instead
- def reduceRightOption(f: (EdgeT, EdgeT) => EdgeT): Option[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).reduceRightOption(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.reduceRightOption(...) instead
- final def repr: Set[EdgeT]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside
- def sameElements[B >: A](that: scala.collection.IterableOnce[B]): Boolean
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.sameElements instead
- def seq: EdgeSet.this.type
- Definition Classes
- Iterable
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Iterable.seq always returns the iterable itself
- def size: Int
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).size
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.size instead
- def sum(implicit num: Numeric[EdgeT]): EdgeT
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).sum(num)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.sum instead
- def to[C1](factory: Factory[EdgeT, C1]): C1
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).to(factory)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.to(factory) instead
- def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toArray(arg0)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.toArray
- def toBuffer[B >: A]: Buffer[B]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toBuffer
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead
- def toEdgeInSet: Set[E[N]]
- Annotations
- @deprecated
- Deprecated
(Since version 1.8.0) Use toOuter instead
- def toIndexedSeq: IndexedSeq[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toIndexedSeq
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.toIndexedSeq instead
- final def toIterable: Iterable[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toIterable
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.to(Iterable) instead
- final def toIterable: EdgeSet.this.type
- Definition Classes
- Iterable → IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to
toList
ortoSeq
, but it doesn't copy non-immutable collections
- def toIterator: Iterator[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toIterator
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead
- final def toIterator: Iterator[EdgeT]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead of .toIterator
- def toList: List[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toList
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.to(List) instead
- def toMap[K, V](implicit ev: <:<[EdgeT, (K, V)]): Map[K, V]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toMap(ev)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.to(Map) instead
- def toSeq: Seq[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toSeq
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.to(Seq) instead
- def toSet[B >: A]: Set[B]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toSet
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.to(Set) instead
- def toStream: Stream[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toStream
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.to(LazyList) instead
- final def toStream: Stream[EdgeT]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .to(LazyList) instead of .toStream
- final def toTraversable: Traversable[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toTraversable
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.to(Iterable) instead
- final def toTraversable: Traversable[EdgeT]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to
toList
ortoSeq
, but it doesn't copy non-immutable collections
- def toVector: Vector[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).toVector
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator.to(Vector) instead
- def view(from: Int, until: Int): View[EdgeT]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)
- def withFilter(f: (EdgeT) => Boolean): Iterator[EdgeT]
- Implicit
- This member is added by an implicit conversion from EdgeSet toIterableOnceExtensionMethods[EdgeT] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(edgeSet: IterableOnceExtensionMethods[EdgeT]).withFilter(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator.withFilter(...) instead
Welcome to the Graph for Scala API reference. Some suggested navigation entry points:
Graph
mutable.Graph
and its inner nodes.GraphEdge
objectedge
packageGraphPredef
object andImplicits
object.GraphTraversal
andTraverserInnerNode
.RandomGraph
.GraphGen
.