Packages

  • package root
    Definition Classes
    root
  • package scalax
    Definition Classes
    root
  • package collection
    Definition Classes
    scalax
  • package constrained

    Traits enabling to implement constraints and use constrained graphs.

    Traits enabling to implement constraints and use constrained graphs.

    Graphs may be constrained dynamically or statically.

    Dynamically constrained means that a constraint is bound to a constrained Graph instance at initialization time. The constrained Graph will then delegate all calls to the methods of ConstraintMethods and ConstraintHandlerMethods to the corresponding methods of the constraint bound to it. The immutable and mutable factories Graph in this package yield dynamically constrained graphs.

    To make use of dynamically constrained graphs you may make use of the predefined constraints or provide an own implementation of Constraint along with its companion object. To initialize a graph with one or several combined constraints just call the graph factory methods of the constraint package passing.

    Statically constrained means that the graph class directly implements the methods declared in ConstraintMethods.

    Definition Classes
    collection
  • package mutable

    Mutable constrained graph templates.

    Mutable constrained graph templates.

    Definition Classes
    constrained
  • AdjacencyListGraph
  • CompanionAlias
  • DAG
  • DefaultGraphImpl
  • Forest
  • Graph
  • GraphBuilder
  • GraphLike
  • GraphOps
  • Tree
  • UserConstrainedGraphImpl

abstract class DefaultGraphImpl[N, E[+X] <: EdgeLikeIn[X]] extends Graph[N, E] with AdjacencyListGraph[N, E, DefaultGraphImpl] with GraphTraversalImpl[N, E]

Linear Supertypes
GraphTraversalImpl[N, E], State[N, E], TraverserImpl[N, E], AdjacencyListGraph[N, E, DefaultGraphImpl], mutable.AdjacencyListGraph[N, E, DefaultGraphImpl], AdjacencyListBase[N, E, DefaultGraphImpl], AddSubtract[Param[N, E], DefaultGraphImpl[N, E]], Graph[N, E], GraphLike[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]], GraphOps[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]], constrained.Graph[N, E], constrained.GraphLike[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]], Constrained[N, E, DefaultGraphImpl[N, E]], ConstraintMethods[N, E, DefaultGraphImpl[N, E]], constrained.GraphOps[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]], mutable.Graph[N, E], mutable.GraphLike[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]], EdgeOps[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]], Cloneable[DefaultGraphImpl[N, E]], Cloneable, Shrinkable[Param[N, E]], Growable[Param[N, E]], Clearable, collection.Graph[N, E], collection.GraphLike[N, E, [NN, EE[+XX]]DefaultGraphImpl[NN, EE]], GraphDegree[N, E], GraphTraversal[N, E], GraphBase[N, E], Serializable, GraphAsSet[N, E, [NN, EE[+XX]]DefaultGraphImpl[NN, EE]], Set[Param[N, E]], Equals, SetOps[Param[N, E], [_]AnySet[_], DefaultGraphImpl[N, E]], (Param[N, E]) => Boolean, Iterable[Param[N, E]], IterableFactoryDefaults[Param[N, E], [x]Set[x]], IterableOps[Param[N, E], [_]AnySet[_], DefaultGraphImpl[N, E]], IterableOnceOps[Param[N, E], [_]AnySet[_], DefaultGraphImpl[N, E]], scala.collection.IterableOnce[Param[N, E]], AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultGraphImpl
  2. GraphTraversalImpl
  3. State
  4. TraverserImpl
  5. AdjacencyListGraph
  6. AdjacencyListGraph
  7. AdjacencyListBase
  8. AddSubtract
  9. Graph
  10. GraphLike
  11. GraphOps
  12. Graph
  13. GraphLike
  14. Constrained
  15. ConstraintMethods
  16. GraphOps
  17. Graph
  18. GraphLike
  19. EdgeOps
  20. Cloneable
  21. Cloneable
  22. Shrinkable
  23. Growable
  24. Clearable
  25. Graph
  26. GraphLike
  27. GraphDegree
  28. GraphTraversal
  29. GraphBase
  30. Serializable
  31. GraphAsSet
  32. Set
  33. Equals
  34. SetOps
  35. Function1
  36. Iterable
  37. IterableFactoryDefaults
  38. IterableOps
  39. IterableOnceOps
  40. IterableOnce
  41. AnyRef
  42. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by EdgeAssoc
  3. by predicateToNodePredicate
  4. by TraversableEnrichments
  5. by anyToNode
  6. by ChainingOps
  7. by IterableEnrichments
  8. by any2stringadd
  9. by StringFormat
  10. by Ensuring
  11. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DefaultGraphImpl(iniNodes: Iterable[N] = Set[N](), iniEdges: Iterable[E[N]] = Set[E[N]]())(implicit edgeT: ClassTag[E[N]], _config: DefaultGraphImpl.Config with GenConstrainedConfig with AdjacencyListArrayConfig)

Type Members

  1. final class EdgeSet extends This.EdgeSet
    Definition Classes
    AdjacencyListGraph
    Annotations
    @SerialVersionUID()
  2. final class NodeSet extends This.NodeSet with This.NodeSet
    Definition Classes
    AdjacencyListGraph
    Annotations
    @SerialVersionUID()
  3. sealed abstract class AbstractTopologicalOrder[+A, +T] extends AbstractIterable[T]
    Definition Classes
    GraphTraversal
  4. class AnyEdgeLazyCycle extends (GraphTraversalImpl.this)#AnyEdgeLazyPath with (GraphTraversalImpl.this)#Cycle
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  5. class AnyEdgeLazyPath extends (GraphTraversalImpl.this)#SimpleLazyPath
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  6. abstract class Component extends Properties
    Definition Classes
    GraphTraversal
  7. case class ComponentTraverser extends (GraphTraversalImpl.this)#ComponentTraverser with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  8. type Config = ConstrainedConfig
    Attributes
    protected
    Definition Classes
    DefaultGraphImplAdjacencyListGraph → AdjacencyListBase → GraphLike → GraphLike
  9. trait Cycle extends Path
    Definition Classes
    GraphTraversal
  10. type CycleNodeOrTopologicalOrder = Either[NodeT, TopologicalOrder[NodeT]]
    Definition Classes
    GraphTraversal
  11. trait DegreeFunction extends ((GraphDegree.this)#NodeT) => Int
    Definition Classes
    GraphDegree
  12. type DegreeNodeSeqEntry = (Int, NodeT)
    Definition Classes
    GraphDegree
  13. final class DegreeOrdering extends Ordering[(GraphDegree.this)#NodeT]
    Definition Classes
    GraphDegree
  14. trait DownUpTraverser[A, +This <: (GraphTraversalImpl.this)#DownUpTraverser[A, This]] extends (GraphTraversalImpl.this)#TraverserMethods[A, This] with (GraphTraversalImpl.this)#Impl[A, This]
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  15. trait Edge extends Serializable
    Definition Classes
    GraphBase
  16. class EdgeBase extends InnerEdgeParam[N, E, (collection.GraphLike.this)#NodeT, E] with (collection.GraphLike.this)#InnerEdge
    Definition Classes
    GraphLike
  17. type EdgeFilter = (EdgeT) => Boolean
    Definition Classes
    GraphBase
  18. class EdgeImpl extends mutable.AdjacencyListGraph.This.EdgeBase
    Definition Classes
    AdjacencyListGraph
    Annotations
    @SerialVersionUID()
  19. sealed trait EdgeOrdering extends Ordering[GraphBase.EdgeT] with ElemOrdering
    Definition Classes
    GraphBase
  20. type EdgeSetT = EdgeSet
    Definition Classes
    AdjacencyListGraph → AdjacencyListGraph → AdjacencyListBase → GraphLike → GraphLike → GraphBase
  21. type EdgeT = EdgeImpl
    Definition Classes
    AdjacencyListGraph → GraphLike → GraphBase
  22. sealed trait ElemOrdering extends AnyRef
    Attributes
    protected
    Definition Classes
    GraphBase
  23. trait ExtendedNodeVisitor[U] extends (GraphTraversal.NodeT) => U
    Definition Classes
    GraphTraversal
  24. trait Filter[T] extends (T) => Boolean
    Definition Classes
    GraphDegree
  25. abstract class FluentProperties[+This <: FluentProperties[This]] extends AnyRef
    Attributes
    protected
    Definition Classes
    GraphTraversal
  26. trait Impl[A, +This <: GraphTraversalImpl.Traverser[A, This] with GraphTraversalImpl.Impl[A, This]] extends GraphTraversalImpl.TraverserMethods[A, This] with GraphTraversalImpl.Traverser[A, This]
    Attributes
    protected[collection]
    Definition Classes
    TraverserImpl
  27. trait InnerEdge extends (collection.GraphLike.this)#InnerEdge
    Definition Classes
    GraphLike
  28. case class InnerEdgeTraverser extends (GraphTraversalImpl.this)#InnerEdgeTraverser with (GraphTraversalImpl.this)#Impl[(GraphTraversalImpl.this)#EdgeT, (GraphTraversalImpl.this)#InnerEdgeTraverser] with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  29. sealed trait InnerElem extends AnyRef
    Definition Classes
    GraphBase
  30. case class InnerElemTraverser extends (GraphTraversalImpl.this)#InnerElemTraverser with (GraphTraversalImpl.this)#Impl[(GraphTraversalImpl.this)#InnerElem, (GraphTraversalImpl.this)#InnerElemTraverser] with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  31. trait InnerNode extends (AdjacencyListBase.this)#InnerNode
    Definition Classes
    AdjacencyListBase
  32. case class InnerNodeDownUpTraverser extends (GraphTraversalImpl.this)#InnerNodeDownUpTraverser with (GraphTraversalImpl.this)#DownUpTraverser[(Boolean, (GraphTraversalImpl.this)#NodeT), (GraphTraversalImpl.this)#InnerNodeDownUpTraverser] with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  33. abstract class InnerNodeImpl extends mutable.AdjacencyListGraph.This.NodeBase with mutable.AdjacencyListGraph.This.InnerNode with mutable.AdjacencyListGraph.This.InnerNode
    Definition Classes
    AdjacencyListGraph
  34. trait InnerNodeOps extends AnyRef
    Definition Classes
    EdgeOps
  35. trait InnerNodeState extends AnyRef
    Definition Classes
    State
  36. trait InnerNodeTraversalImpl extends (GraphTraversalImpl.this)#TraverserInnerNode with (GraphTraversalImpl.this)#InnerNodeState
    Definition Classes
    GraphTraversalImpl
  37. case class InnerNodeTraverser extends (GraphTraversalImpl.this)#InnerNodeTraverser with (GraphTraversalImpl.this)#Impl[(GraphTraversalImpl.this)#NodeT, (GraphTraversalImpl.this)#InnerNodeTraverser] with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  38. case class Layer extends Product with Serializable
    Definition Classes
    GraphTraversal
  39. final class LayeredTopologicalOrder[+A] extends AbstractTopologicalOrder[A, (Int, Iterable[A])]
    Definition Classes
    GraphTraversal
  40. type Layers = Iterable[Layer]
    Definition Classes
    GraphTraversal
  41. abstract class LazyPath extends (GraphTraversalImpl.this)#Path
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  42. final class MapPathTraversable[T] extends Iterable[T]
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  43. class MinWeightEdgeLazyPath extends (GraphTraversalImpl.this)#SimpleLazyPath
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  44. class MultiEdgeLazyCycle extends (GraphTraversalImpl.this)#MultiEdgeLazyPath with (GraphTraversalImpl.this)#Cycle
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  45. class MultiEdgeLazyPath extends (GraphTraversalImpl.this)#LazyPath
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  46. trait Node extends Serializable
    Definition Classes
    GraphBase
  47. class NodeBase extends InnerNodeImpl with InnerNodeTraversalImpl
    Attributes
    protected
    Annotations
    @SerialVersionUID()
  48. type NodeFilter = (NodeT) => Boolean
    Definition Classes
    GraphBase
  49. sealed trait NodeOrdering extends Ordering[GraphBase.NodeT] with ElemOrdering
    Definition Classes
    GraphBase
  50. type NodeSetT = NodeSet
    Definition Classes
    AdjacencyListGraph → AdjacencyListGraph → AdjacencyListBase → GraphLike → GraphLike → GraphBase
  51. type NodeT = NodeBase
    Definition Classes
    DefaultGraphImpl → GraphTraversalImpl → AdjacencyListGraph → AdjacencyListBase → GraphLike → GraphLike → GraphTraversal → GraphBase
  52. case class OuterEdgeTraverser extends (GraphTraversalImpl.this)#OuterEdgeTraverser with (GraphTraversalImpl.this)#Impl[E[N], (GraphTraversalImpl.this)#OuterEdgeTraverser] with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  53. case class OuterElemTraverser extends (GraphTraversalImpl.this)#TraverserMethods[OuterElem[N, E], (GraphTraversalImpl.this)#OuterElemTraverser] with (GraphTraversalImpl.this)#OuterElemTraverser with (GraphTraversalImpl.this)#Impl[OuterElem[N, E], (GraphTraversalImpl.this)#OuterElemTraverser] with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  54. case class OuterNodeDownUpTraverser extends (GraphTraversalImpl.this)#OuterNodeDownUpTraverser with (GraphTraversalImpl.this)#DownUpTraverser[(Boolean, N), (GraphTraversalImpl.this)#OuterNodeDownUpTraverser] with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  55. case class OuterNodeTraverser extends (GraphTraversalImpl.this)#OuterNodeTraverser with (GraphTraversalImpl.this)#Impl[N, (GraphTraversalImpl.this)#OuterNodeTraverser] with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  56. trait Path extends Walk
    Definition Classes
    GraphTraversal
  57. class PathBuilder extends (GraphTraversalImpl.this)#WalkBuilder with (GraphTraversalImpl.this)#PathBuilder
    Definition Classes
    GraphTraversalImpl
  58. trait Properties extends SubgraphProperties
    Attributes
    protected
    Definition Classes
    GraphTraversal
  59. final class ReverseStackTraversable[S <: NodeElement] extends Iterable[(GraphTraversalImpl.this)#NodeT]
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  60. abstract class SimpleLazyPath extends (GraphTraversalImpl.this)#LazyPath
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  61. class StrongComponentImpl extends (GraphTraversalImpl.this)#Component
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  62. case class StrongComponentTraverser extends (GraphTraversalImpl.this)#StrongComponentTraverser with Product with Serializable
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  63. trait SubgraphProperties extends AnyRef
    Attributes
    protected
    Definition Classes
    GraphTraversal
  64. type ThisGraph = DefaultGraphImpl.this.type
    Attributes
    protected
    Definition Classes
    GraphLike
  65. type TopoSortSetup = (Buffer[NodeT], Map[NodeT, Int], Option[NodeT])
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  66. final class TopologicalOrder[+A] extends AbstractTopologicalOrder[A, A]
    Definition Classes
    GraphTraversal
  67. trait Traverser[A, +This <: Traverser[A, This]] extends TraverserMethods[A, This] with Properties with CompatTraversable[A]
    Definition Classes
    GraphTraversal
  68. trait TraverserInnerNode extends GraphTraversal.InnerNode
    Definition Classes
    GraphTraversal
  69. abstract class TraverserMethods[A, +This <: TraverserMethods[A, This]] extends FluentProperties[This]
    Attributes
    protected
    Definition Classes
    GraphTraversal
  70. trait Walk extends Iterable[GraphTraversal.InnerElem]
    Definition Classes
    GraphTraversal
  71. class WalkBuilder extends (GraphTraversalImpl.this)#WalkBuilder
    Definition Classes
    GraphTraversalImpl
  72. class WeakComponentImpl extends (GraphTraversalImpl.this)#Component
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  73. class Weight extends AnyRef
    Definition Classes
    GraphTraversal

Abstract Value Members

  1. abstract val constraintFactory: ConstraintCompanion[Constraint]
    Definition Classes
    GraphLike
  2. abstract def preAdd(edge: E[N]): PreCheckResult

    This pre-check must return Abort if the addition is to be canceled, PostCheck if postAdd is to be called to decide or Complete if the outer edge is allowed to be added.

    This pre-check must return Abort if the addition is to be canceled, PostCheck if postAdd is to be called to decide or Complete if the outer edge is allowed to be added. If postAdd has been implemented, this method may always return PostCheck. This pre-check may be omitted by letting it always return postCheck and overriding the corresponding post-check commit* method. Use self to access the associated graph.

    edge

    to be added.

    returns

    The results of the pre-check containing the follow-up activity and possibly any intermediate computation result to be used during the post-check. To add computation results PreCheckResult must be extended.

    Definition Classes
    ConstraintMethods
  3. abstract def preAdd(node: N): PreCheckResult

    This pre-check must return Abort if the addition is to be canceled, PostCheck if postAdd is to be called to decide or Complete if the outer node is allowed to be added.

    This pre-check must return Abort if the addition is to be canceled, PostCheck if postAdd is to be called to decide or Complete if the outer node is allowed to be added. If postAdd has been implemented, this method may always return PostCheck. This pre-check may be omitted by letting it always return postCheck and overriding the corresponding post-check commit* method. Use self to access the associated graph.

    node

    to be added

    returns

    The results of the pre-check containing the follow-up activity and possibly any intermediate computation result to be used during the post-check. To add computation results PreCheckResult must be extended.

    Definition Classes
    ConstraintMethods
  4. abstract def preSubtract(edge: EdgeT, simple: Boolean): PreCheckResult

    This pre-check must return Abort if the subtraction of edge is to be canceled, PostCheck if postSubtract is to be called to decide or Complete if the the edge is allowed to be subtracted.

    This pre-check must return Abort if the subtraction of edge is to be canceled, PostCheck if postSubtract is to be called to decide or Complete if the the edge is allowed to be subtracted. This pre-check may be omitted by letting it always return postCheck and overriding the corresponding post-check commit* method. Use self to access the associated graph.

    edge

    the inner edge to be subtracted.

    simple

    true for standard (edge-only by -), false for ripple (by -!) removal.

    returns

    The results of the pre-check containing the follow-up activity and possibly any intermediate computation result to be used during the post-check. To add computation results PreCheckResult must be extended.

    Definition Classes
    ConstraintMethods
  5. abstract def preSubtract(node: NodeT, forced: Boolean): PreCheckResult

    This pre-check must return Abort if the subtraction of node is to be canceled, PostCheck if postSubtract is to be called to decide or Complete if the the node is allowed to be subtracted.

    This pre-check must return Abort if the subtraction of node is to be canceled, PostCheck if postSubtract is to be called to decide or Complete if the the node is allowed to be subtracted. This pre-check may be omitted by letting it always return postCheck and overriding the corresponding post-check commit* method. Use self to access the associated graph.

    node

    the inner to be subtracted.

    forced

    true for standard (ripple by -), false for gentle (by -?) removal.

    returns

    The results of the pre-check containing the follow-up activity and possibly any intermediate computation result to be used during the post-check. To add computation results PreCheckResult must be extended.

    Definition Classes
    ConstraintMethods
  6. abstract val self: DefaultGraphImpl[N, E]

    When extending Constraint, self will denote the attached constrained graph.

    When extending Constraint, self will denote the attached constrained graph. The factory methods of the companion object scalax.collection.constrained.Graph initialize self to the correct graph instance. When extending Constrained, self will denote this graph.

    Definition Classes
    ConstraintMethods

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def &(that: Set[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. def &=(coll: Iterable[Param[N, E]]): DefaultGraphImpl.this.type
    Definition Classes
    GraphLike
  5. final def &~(that: Set[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    SetOps
    Annotations
    @inline()
  6. def +(node: N): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike → GraphLike → GraphLike
  7. final def +(elem: Param[N, E]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphOps
  8. final def +#(e: E[N]): DefaultGraphImpl[N, E]
    Attributes
    protected
    Definition Classes
    GraphLike → GraphLike
  9. final def +#?(e: E[N]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]
    Attributes
    protected
    Definition Classes
    GraphLikeGraphLike
  10. final def ++(that: scala.collection.IterableOnce[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    SetOps
    Annotations
    @inline()
  11. final def ++[B >: Param[N, E]](suffix: scala.collection.IterableOnce[B]): AnySet[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  12. final def ++=(xs: scala.collection.IterableOnce[Param[N, E]]): DefaultGraphImpl.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  13. def ++=?(elems: TraversableOnce[Param[N, E]]): Either[ConstraintViolation, DefaultGraphImpl.this.type]

    Same as ++= but $Info.

    Same as ++= but $Info.

    Definition Classes
    GraphLikeGraphOps
  14. def ++?(elems: scala.IterableOnce[Param[N, E]]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]

    Same as ++ but $Info.

    Same as ++ but $Info.

    Definition Classes
    GraphLikeGraphOps
  15. final def +=(node: N): DefaultGraphImpl.this.type
    Definition Classes
    GraphLike
    Annotations
    @inline()
  16. final def +=(elem: Param[N, E]): DefaultGraphImpl.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  17. final def +=#(edge: E[N]): DefaultGraphImpl.this.type
    Attributes
    protected
    Definition Classes
    AdjacencyListGraph → GraphLike
    Annotations
    @inline()
  18. def +=#?(edge: E[N]): Either[ConstraintViolation, DefaultGraphImpl.this.type]
    Attributes
    protected
    Definition Classes
    GraphOps
  19. def +=?(elem: Param[N, E]): Either[ConstraintViolation, DefaultGraphImpl.this.type]

    Same as += but $Info.

    Same as += but $Info.

    Definition Classes
    GraphOps
  20. def +=?(node: N): Either[ConstraintViolation, DefaultGraphImpl.this.type]

    Same as += but $Info.

    Same as += but $Info.

    Definition Classes
    GraphOps
  21. def +?(node: N): Either[ConstraintViolation, DefaultGraphImpl[N, E]]

    Same as + but $Info.

    Same as + but $Info.

    Definition Classes
    GraphLikeGraphOps
  22. def +?(elem: Param[N, E]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]

    Same as + but $Info.

    Same as + but $Info.

    Definition Classes
    GraphLikeGraphOps
  23. final def +~%+=[EE[+X] <: E[X] with WLHyperEdgeBound[X], L](node_1: N, node_2: N, nodes: N*)(weight: Double, label: L)(implicit edgeFactory: WLHyperEdgeCompanion[EE], endpointsKind: CollectionKind): DefaultGraphImpl.this.type
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  24. final def +~%+=[EE[+X] <: E[X] with WLEdgeBound[X], L](node_1: N, node_2: N)(weight: Double, label: L)(implicit edgeFactory: WLEdgeCompanion[EE]): DefaultGraphImpl.this.type
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  25. final def +~%=[EE[+X] <: E[X] with WHyperEdgeBound[X]](node_1: N, node_2: N, nodes: N*)(weight: Double)(implicit edgeFactory: WHyperEdgeCompanion[EE], endpointsKind: CollectionKind): DefaultGraphImpl.this.type
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  26. final def +~%=[EE[+X] <: E[X] with WEdgeBound[X]](node_1: N, node_2: N)(weight: Double)(implicit edgeFactory: WEdgeCompanion[EE]): DefaultGraphImpl.this.type
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  27. final def +~+=[EE[+X] <: E[X] with LHyperEdgeBound[X], L](node_1: N, node_2: N, nodes: N*)(label: L)(implicit edgeFactory: LHyperEdgeCompanion[EE]): DefaultGraphImpl.this.type
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  28. final def +~+=[EE[+X] <: E[X] with LEdgeBound[X], L](node_1: N, node_2: N)(label: L)(implicit edgeFactory: LEdgeCompanion[EE]): DefaultGraphImpl.this.type
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  29. final def +~=(node_1: N, node_2: N, nodes: N*)(implicit edgeFactory: HyperEdgeCompanion[E], endpointsKind: CollectionKind): DefaultGraphImpl.this.type
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  30. final def +~=(node_1: N, node_2: N)(implicit edgeFactory: EdgeCompanion[E]): DefaultGraphImpl.this.type
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  31. final def -(elem: Param[N, E]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphOps
  32. final def -(edge: E[N]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike
    Annotations
    @inline()
  33. final def -(node: N): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike → GraphLike
    Annotations
    @inline()
  34. final def -!(edge: E[N]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike
    Annotations
    @inline()
  35. final def -!#(edge: E[N]): DefaultGraphImpl[N, E]
    Attributes
    protected
    Definition Classes
    GraphLike → GraphLike
    Annotations
    @inline()
  36. def -!=(elem: Param[N, E]): DefaultGraphImpl.this.type
    Definition Classes
    GraphLike
  37. final def -!=#(edge: E[N]): DefaultGraphImpl.this.type
    Attributes
    protected
    Definition Classes
    GraphLike
    Annotations
    @inline()
  38. final def -#(e: E[N]): DefaultGraphImpl[N, E]
    Attributes
    protected
    Definition Classes
    GraphLike → GraphLike
  39. final def -#?(e: E[N]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]
    Attributes
    protected
    Definition Classes
    GraphLikeGraphLike
  40. final def --(elems: scala.IterableOnce[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphOps
  41. final def --!=(coll: Iterable[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike
    Annotations
    @inline()
  42. final def --=(xs: scala.collection.IterableOnce[Param[N, E]]): DefaultGraphImpl.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  43. def --=?(elems: TraversableOnce[Param[N, E]]): Either[ConstraintViolation, DefaultGraphImpl.this.type]

    Same as --= but $Info.

    Same as --= but $Info.

    Definition Classes
    GraphLikeGraphOps
  44. def --?(elems: scala.IterableOnce[Param[N, E]]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]

    Same as -- but $Info.

    Same as -- but $Info.

    Definition Classes
    GraphLikeGraphOps
  45. final def -=(node: N): DefaultGraphImpl.this.type
    Definition Classes
    GraphLike
    Annotations
    @inline()
  46. def -=(elem1: Param[N, E], elem2: Param[N, E], elems: Param[N, E]*): DefaultGraphImpl.this.type
    Definition Classes
    Shrinkable
  47. final def -=(elem: Param[N, E]): DefaultGraphImpl.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  48. final def -=#(edge: E[N]): DefaultGraphImpl.this.type
    Attributes
    protected
    Definition Classes
    GraphLike
    Annotations
    @inline()
  49. def -=#?(edge: E[N]): Either[ConstraintViolation, DefaultGraphImpl.this.type]
    Attributes
    protected
    Definition Classes
    GraphOps
  50. def -=?(elem: Param[N, E]): Either[ConstraintViolation, DefaultGraphImpl.this.type]

    Same as -= but $Info.

    Same as -= but $Info.

    Definition Classes
    GraphOps
  51. def -=?(node: N): Either[ConstraintViolation, DefaultGraphImpl.this.type]

    Same as -= but $Info.

    Same as -= but $Info.

    Definition Classes
    GraphOps
  52. def ->[B](y: B): (DefaultGraphImpl[N, E], B)
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toArrowAssoc[DefaultGraphImpl[N, E]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  53. final def -?(node: N): Either[ConstraintViolation, DefaultGraphImpl[N, E]]

    Same as - but $Info.

    Same as - but $Info.

    Definition Classes
    GraphLikeGraphOps
  54. def -?(elem: Param[N, E]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]

    Same as - but $Info.

    Same as - but $Info.

    Definition Classes
    GraphLikeGraphOps
  55. final def -?=(node: N): DefaultGraphImpl.this.type
    Definition Classes
    GraphLike
    Annotations
    @inline()
  56. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  57. var _edges: EdgeSetT
    Attributes
    protected[this]
  58. var _nodes: NodeSetT
    Attributes
    protected[this]
  59. final def add(edge: E[N]): Boolean
    Definition Classes
    AdjacencyListGraph → GraphLike
    Annotations
    @inline()
  60. final def add(node: N): Boolean
    Definition Classes
    AdjacencyListGraph → GraphLike
    Annotations
    @inline()
  61. def addAll(elems: TraversableOnce[Param[N, E]]): DefaultGraphImpl.this.type
    Definition Classes
    GraphLike → Growable
  62. final def addAndGet(edge: E[N]): EdgeT
    Definition Classes
    GraphLike
    Annotations
    @inline()
  63. final def addAndGet(node: N): NodeT
    Definition Classes
    GraphLike
    Annotations
    @inline()
  64. def addAndGetEdge(node_1: N, node_2: N, nodes: N*)(implicit edgeFactory: HyperEdgeCompanion[E], endpointsKind: CollectionKind): EdgeT
    Definition Classes
    EdgeOps
  65. final def addAndGetEdge(node_1: N, node_2: N)(implicit edgeFactory: EdgeCompanion[E]): EdgeT
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  66. def addAndGetLEdge[EE[+X] <: E[X] with LHyperEdgeBound[X], L](node_1: N, node_2: N, nodes: N*)(label: L)(implicit edgeFactory: LHyperEdgeCompanion[EE]): EdgeT
    Definition Classes
    EdgeOps
  67. final def addAndGetLEdge[EE[+X] <: E[X] with LEdgeBound[X], L](node_1: N, node_2: N)(label: L)(implicit edgeFactory: LEdgeCompanion[EE]): EdgeT
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  68. def addAndGetWEdge[EE[+X] <: E[X] with WHyperEdgeBound[X]](node_1: N, node_2: N, nodes: N*)(weight: Double)(implicit edgeFactory: WHyperEdgeCompanion[EE], endpointsKind: CollectionKind): EdgeT
    Definition Classes
    EdgeOps
  69. final def addAndGetWEdge[EE[+X] <: E[X] with WEdgeBound[X]](node_1: N, node_2: N)(weight: Double)(implicit edgeFactory: WEdgeCompanion[EE]): EdgeT
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  70. def addAndGetWLEdge[EE[+X] <: E[X] with WLHyperEdgeBound[X], L](node_1: N, node_2: N, nodes: N*)(weight: Double, label: L)(implicit edgeFactory: WLHyperEdgeCompanion[EE], endpointsKind: CollectionKind): EdgeT
    Definition Classes
    EdgeOps
  71. final def addAndGetWLEdge[EE[+X] <: E[X] with WLEdgeBound[X], L](node_1: N, node_2: N)(weight: Double, label: L)(implicit edgeFactory: WLEdgeCompanion[EE]): EdgeT
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  72. final def addEdge(node_1: N, node_2: N, nodes: N*)(implicit edgeFactory: HyperEdgeCompanion[E], endpointsKind: CollectionKind): Boolean
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  73. final def addEdge(node_1: N, node_2: N)(implicit edgeFactory: EdgeCompanion[E]): Boolean
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  74. final def addLEdge[EE[+X] <: E[X] with LHyperEdgeBound[X], L](node_1: N, node_2: N, nodes: N*)(label: L)(implicit edgeFactory: LHyperEdgeCompanion[EE]): Boolean
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  75. final def addLEdge[EE[+X] <: E[X] with LEdgeBound[X], L](node_1: N, node_2: N)(label: L)(implicit edgeFactory: LEdgeCompanion[EE]): Boolean
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  76. def addOne(elem: Param[N, E]): DefaultGraphImpl.this.type
    Definition Classes
    GraphLike → Growable
  77. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  78. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  79. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  80. final def addWEdge[EE[+X] <: E[X] with WHyperEdgeBound[X]](node_1: N, node_2: N, nodes: N*)(weight: Double)(implicit edgeFactory: WHyperEdgeCompanion[EE], endpointsKind: CollectionKind): Boolean
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  81. final def addWEdge[EE[+X] <: E[X] with WEdgeBound[X]](node_1: N, node_2: N)(weight: Double)(implicit edgeFactory: WEdgeCompanion[EE]): Boolean
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  82. final def addWLEdge[EE[+X] <: E[X] with WLHyperEdgeBound[X], L](node_1: N, node_2: N, nodes: N*)(weight: Double, label: L)(implicit edgeFactory: WLHyperEdgeCompanion[EE], endpointsKind: CollectionKind): Boolean
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  83. final def addWLEdge[EE[+X] <: E[X] with WLEdgeBound[X], L](node_1: N, node_2: N)(weight: Double, label: L)(implicit edgeFactory: WLEdgeCompanion[EE]): Boolean
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  84. def add_?(edge: E[N]): Either[ConstraintViolation, Boolean]

    Same as add but $Info.

    Same as add but $Info.

    Definition Classes
    AdjacencyListGraphGraphOps
  85. def add_?(node: N): Either[ConstraintViolation, Boolean]

    Same as add but $Info.

    Same as add but $Info.

    Definition Classes
    AdjacencyListGraphGraphOps
  86. def allNodes(passedNodes: Iterable[N], passedEdges: Iterable[E[N]]): Set[N]

    Consolidates all outer nodes of the arguments by adding the edge ends of passedEdges to passedNodes.

    Consolidates all outer nodes of the arguments by adding the edge ends of passedEdges to passedNodes.

    Attributes
    protected
    Definition Classes
    ConstraintMethods
  87. def andThen[A](g: (Boolean) => A): (Param[N, E]) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  88. final val anyEdge: EdgeFilter
    Definition Classes
    GraphBase
  89. final def anyEdgeSelector(from: NodeT, to: NodeT): Option[EdgeT]
    Definition Classes
    GraphTraversal
    Annotations
    @inline()
  90. final val anyNode: NodeFilter
    Definition Classes
    GraphBase
  91. final lazy val anyOrdering: AnyOrdering[N]
    Attributes
    protected
    Definition Classes
    GraphBase
  92. final def apply(elem: Param[N, E]): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  93. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  94. def asSortedString(nodeSeparator: String, edgeSeparator: String, nodesEdgesSeparator: String, withNodesEdgesPrefix: Boolean)(implicit ordNode: NodeOrdering, ordEdge: EdgeOrdering): String
    Definition Classes
    GraphLike
  95. final def bulkOp(elems: IterableOnce[Param[N, E]], isPlusPlus: Boolean): DefaultGraphImpl[N, E]
    Attributes
    protected
    Definition Classes
    GraphLike → GraphAsSet
  96. def canEqual(that: Any): Boolean
    Definition Classes
    Set → Equals
  97. def checkSuspended: Boolean
    Attributes
    protected
    Definition Classes
    GraphLike
  98. def checkedMinusEdge(edge: E[N], simple: Boolean, copy: (E[N], EdgeT) => DefaultGraphImpl[N, E]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]
    Attributes
    protected
    Definition Classes
    GraphLike
  99. def checkedMinusNode(node: N, forced: Boolean, copy: (N, NodeT) => DefaultGraphImpl[N, E]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]
    Attributes
    protected
    Definition Classes
    GraphLike
  100. def checkedPlus(contained: => Boolean, preAdd: => PreCheckResult, copy: => DefaultGraphImpl[N, E], nodes: => Iterable[N], edges: => Iterable[E[N]]): Either[ConstraintViolation, DefaultGraphImpl[N, E]]
    Attributes
    protected
    Definition Classes
    GraphLike
  101. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  102. final def clear(): Unit
    Definition Classes
    AdjacencyListGraph → Clearable
    Annotations
    @inline()
  103. def clearNodeStates(flags: FlagWord, flagsExt: ExtBitSet): Unit
    Attributes
    protected
    Definition Classes
    State
  104. final def clone(): DefaultGraphImpl.this.type
    Definition Classes
    DefaultGraphImpl → GraphLike → Cloneable → AnyRef
    Annotations
    @inline()
  105. final def coll: DefaultGraphImpl.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  106. def collect[B](pf: PartialFunction[Param[N, E], B]): AnySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  107. def collectFirst[B](pf: PartialFunction[Param[N, E], B]): Option[B]
    Definition Classes
    IterableOnceOps
  108. def componentTraverser(parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): ComponentTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  109. def compose[A](g: (A) => Param[N, E]): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  110. final def concat(elems: scala.IterableOnce[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphOps
  111. def concat[B >: Param[N, E]](suffix: scala.collection.IterableOnce[B]): AnySet[B]
    Definition Classes
    IterableOps
  112. final def config: DefaultGraphImpl.Config with Config
    Definition Classes
    DefaultGraphImpl → GraphLike
  113. def contains(elem: Param[N, E]): Boolean
    Definition Classes
    GraphLike → SetOps
  114. def copyToArray[B >: Param[N, E]](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  115. def copyToArray[B >: Param[N, E]](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  116. def copyToArray[B >: Param[N, E]](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  117. def corresponds[B](that: scala.collection.IterableOnce[B])(p: (Param[N, E], B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  118. def count(p: (Param[N, E]) => Boolean): Int
    Definition Classes
    IterableOnceOps
  119. final def cycle(results: Option[(NodeT, ArrayStack[CycleStackElem])], edgeFilter: EdgeFilter): Option[Cycle]
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  120. final def cycle(maybeStart: Option[NodeT], stack: ArrayStack[Element], edgeFilter: EdgeFilter): Option[Cycle]
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  121. final lazy val defaultEdgeOrdering: EdgeOrdering
    Definition Classes
    GraphBase
  122. final lazy val defaultNodeOrdering: NodeOrdering
    Definition Classes
    GraphBase
  123. final def defaultPathSize: Int
    Attributes
    protected
    Definition Classes
    GraphTraversal
    Annotations
    @inline()
  124. def degreeCount(implicit nodeDegree: DegreeFunction, degreeFilter: (Int) => Boolean): SortedMap[Int, Int]
    Definition Classes
    GraphDegree
  125. def degreeNodeSeq(implicit nodeDegree: DegreeFunction, degreeFilter: (Int) => Boolean): Seq[DegreeNodeSeqEntry]
    Definition Classes
    GraphDegree
  126. def degreeNodesMap(implicit nodeDegree: DegreeFunction, degreeFilter: (Int) => Boolean): SortedMap[Int, AnySet[NodeT]]
    Definition Classes
    GraphDegree
  127. def degreeSeq(implicit nodeDegree: DegreeFunction, degreeFilter: (Int) => Boolean): Seq[Int]
    Definition Classes
    GraphDegree
  128. def degreeSet(implicit nodeDegree: DegreeFunction, degreeFilter: (Int) => Boolean): SortedSet[Int]
    Definition Classes
    GraphDegree
  129. def diff(that: AnySet[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphAsSet → SetOps
  130. def drop(n: Int): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps → IterableOnceOps
  131. def dropRight(n: Int): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps
  132. def dropWhile(p: (Param[N, E]) => Boolean): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps → IterableOnceOps
  133. def dump(store: FlagStore): ExtBitSet
    Attributes
    protected
    Definition Classes
    State
  134. def dumpDirty: ExtBitSet
    Definition Classes
    State
  135. def dumpInUse: ExtBitSet
    Definition Classes
    State
  136. def edgeIterator: Iterator[EdgeT]
    Definition Classes
    AdjacencyListBase
  137. implicit val edgeT: ClassTag[E[N]]
    Definition Classes
    DefaultGraphImpl → GraphLike
  138. implicit final def edgeToEdgeCont(e: E[N]): E[NodeT]
    Attributes
    protected
    Definition Classes
    GraphBase
  139. final def edges: EdgeSetT
    Definition Classes
    DefaultGraphImpl → AdjacencyListGraph → GraphBase
    Annotations
    @inline()
  140. final def empty: DefaultGraphImpl[N, E]
    Definition Classes
    DefaultGraphImplGraphGraph → Graph → Graph → GraphAsSet → IterableFactoryDefaults → IterableOps
    Annotations
    @inline()
  141. def ensuring(cond: (DefaultGraphImpl[N, E]) => Boolean, msg: => Any): DefaultGraphImpl[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toEnsuring[DefaultGraphImpl[N, E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  142. def ensuring(cond: (DefaultGraphImpl[N, E]) => Boolean): DefaultGraphImpl[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toEnsuring[DefaultGraphImpl[N, E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  143. def ensuring(cond: Boolean, msg: => Any): DefaultGraphImpl[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toEnsuring[DefaultGraphImpl[N, E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  144. def ensuring(cond: Boolean): DefaultGraphImpl[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toEnsuring[DefaultGraphImpl[N, E]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  145. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  146. def equals(that: Any): Boolean
    Definition Classes
    GraphLike → Set → Equals → AnyRef → Any
  147. def excl(elem: Param[N, E]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike
  148. def exists(p: (Param[N, E]) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  149. final def expectedMaxNodes(divisor: Int, min: Int): Int
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  150. def filter(pred: (Param[N, E]) => Boolean): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps → IterableOnceOps
  151. def filterNot(pred: (Param[N, E]) => Boolean): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps → IterableOnceOps
  152. final def find(outerEdge: E[N]): Option[EdgeT]
    Definition Classes
    GraphLike
    Annotations
    @inline()
  153. final def find(outerNode: N): Option[NodeT]
    Definition Classes
    GraphLike
    Annotations
    @inline()
  154. def find(p: (Param[N, E]) => Boolean): Option[Param[N, E]]
    Definition Classes
    IterableOnceOps
  155. final def findCycle[U](implicit visitor: (InnerElem) => U): Option[Cycle]
    Definition Classes
    GraphTraversal
  156. final def findCycleContaining[U](node: NodeT)(implicit visitor: (InnerElem) => U): Option[Cycle]
    Definition Classes
    GraphTraversal
  157. def flatMap[B](f: (Param[N, E]) => scala.collection.IterableOnce[B]): AnySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  158. def flatten[B](implicit asIterable: (Param[N, E]) => scala.collection.IterableOnce[B]): AnySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  159. def fold[A1 >: Param[N, E]](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  160. def foldLeft[B](z: B)(op: (B, Param[N, E]) => B): B
    Definition Classes
    IterableOnceOps
  161. def foldRight[B](z: B)(op: (Param[N, E], B) => B): B
    Definition Classes
    IterableOnceOps
  162. final def forInDegrees(nodes: Traversable[NodeT] with SubgraphProperties, maybeHandle: Option[Handle], includeAnyway: Option[NodeT], includeInDegree: NodeFilter, fillInDegrees: Boolean): TopoSortSetup
    Attributes
    protected
    Definition Classes
    GraphTraversalImpl
  163. def forall(p: (Param[N, E]) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  164. def foreach[U](f: (Param[N, E]) => U): Unit
    Definition Classes
    IterableOnceOps
  165. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toStringFormat[DefaultGraphImpl[N, E]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  166. def fromSpecific(coll: IterableOnce[Param[N, E]]): DefaultGraphImpl[N, E]
    Attributes
    protected
    Definition Classes
    GraphAsSet → IterableFactoryDefaults → IterableOps
  167. final def get(outerEdge: E[N]): EdgeT
    Definition Classes
    GraphLike
    Annotations
    @inline()
  168. final def get(outerNode: N): NodeT
    Definition Classes
    GraphLike
    Annotations
    @inline()
  169. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  170. final def getOrElse(outerEdge: E[N], default: EdgeT): EdgeT
    Definition Classes
    GraphLike
    Annotations
    @inline()
  171. final def getOrElse(outerNode: N, default: NodeT): NodeT
    Definition Classes
    GraphLike
    Annotations
    @inline()
  172. final val graphCompanion: DefaultGraphImpl.type
    Definition Classes
    DefaultGraphImplGraphLike → GraphAsSet
  173. def graphSize: Int
    Definition Classes
    GraphBase
  174. def groupBy[K](f: (Param[N, E]) => K): Map[K, DefaultGraphImpl[N, E]]
    Definition Classes
    IterableOps
  175. def groupMap[K, B](key: (Param[N, E]) => K)(f: (Param[N, E]) => B): Map[K, AnySet[B]]
    Definition Classes
    IterableOps
  176. def groupMapReduce[K, B](key: (Param[N, E]) => K)(f: (Param[N, E]) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  177. def grouped(size: Int): Iterator[DefaultGraphImpl[N, E]]
    Definition Classes
    IterableOps
  178. def hashCode(): Int
    Definition Classes
    Set → AnyRef → Any
  179. def having(node: NodeFilter, edge: EdgeFilter): PartialFunction[Param[N, E], Boolean]
    Definition Classes
    GraphLike
  180. def head: Param[N, E]
    Definition Classes
    IterableOps
  181. def headOption: Option[Param[N, E]]
    Definition Classes
    IterableOps
  182. def incl(elem: Param[N, E]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike
  183. def init: DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps
  184. def initialize(nodes: Iterable[N], edges: Iterable[E[N]]): Unit
    Attributes
    protected
    Definition Classes
    AdjacencyListGraph → GraphBase
  185. def initializeFrom(in: ObjectInputStream, nodes: NodeSetT, edges: EdgeSetT): Unit
    Attributes
    protected
    Definition Classes
    AdjacencyListBase
  186. def inits: Iterator[DefaultGraphImpl[N, E]]
    Definition Classes
    IterableOps
  187. def innerEdgeTraverser(root: NodeT, parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): InnerEdgeTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  188. def innerElemTraverser(root: NodeT, parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): InnerElemTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  189. def innerNodeDownUpTraverser(root: NodeT, parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): InnerNodeDownUpTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  190. def innerNodeTraverser(root: NodeT, parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): InnerNodeTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  191. def intersect(that: Set[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    SetOps
  192. final def isAcyclic: Boolean
    Definition Classes
    GraphTraversal
    Annotations
    @inline()
  193. def isComplete: Boolean
    Definition Classes
    GraphTraversal
  194. def isConnected: Boolean
    Definition Classes
    GraphTraversal
  195. final def isCustomEdgeFilter(f: EdgeFilter): Boolean
    Definition Classes
    GraphBase
    Annotations
    @inline()
  196. final def isCustomNodeFilter(f: NodeFilter): Boolean
    Definition Classes
    GraphBase
    Annotations
    @inline()
  197. final def isCyclic: Boolean
    Definition Classes
    GraphTraversal
    Annotations
    @inline()
  198. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  199. def isDirected: Boolean
    Definition Classes
    GraphLike → GraphBase
  200. final val isDirectedT: Boolean
    Attributes
    protected
    Definition Classes
    GraphLike
  201. final def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  202. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  203. def isHyper: Boolean
    Definition Classes
    GraphLike → GraphBase
  204. final val isHyperT: Boolean
    Attributes
    protected
    Definition Classes
    GraphLike
  205. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParam → Param
  206. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  207. def isMixed: Boolean
    Definition Classes
    GraphLike → GraphBase
  208. def isMulti: Boolean
    Definition Classes
    GraphLike → GraphBase
  209. final val isMultiT: Boolean
    Attributes
    protected
    Definition Classes
    GraphLike
  210. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  211. final def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  212. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  213. final def isTrivial: Boolean
    Definition Classes
    GraphBase
    Annotations
    @inline()
  214. def iterableFactory: IterableFactory[Set]
    Definition Classes
    Set → Iterable → IterableOps
  215. def iterator: Iterator[Param[N, E]]
    Definition Classes
    GraphLike → IterableOnce
  216. def knownSize: Int
    Definition Classes
    GraphLike → Growable → IterableOnce
  217. def last: Param[N, E]
    Definition Classes
    IterableOps
  218. def lastOption: Option[Param[N, E]]
    Definition Classes
    IterableOps
  219. def lazyZip[B](that: Iterable[B]): LazyZip2[Param[N, E], B, DefaultGraphImpl.this.type]
    Definition Classes
    Iterable
  220. def map[NN, EE[+X] <: EdgeLikeIn[X]](f: (Param[N, E]) => Param[NN, EE])(implicit edgeT: ClassTag[EE[NN]]): DefaultGraphImpl[NN, EE]
    Definition Classes
    GraphAsSet
  221. def map[B](f: (Param[N, E]) => B): AnySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  222. def max[B >: Param[N, E]](implicit ord: Ordering[B]): Param[N, E]
    Definition Classes
    IterableOnceOps
  223. def maxBy[B](f: (Param[N, E]) => B)(implicit cmp: Ordering[B]): Param[N, E]
    Definition Classes
    IterableOnceOps
  224. def maxByOption[B](f: (Param[N, E]) => B)(implicit cmp: Ordering[B]): Option[Param[N, E]]
    Definition Classes
    IterableOnceOps
  225. def maxDegree(implicit nodeDegree: DegreeFunction, degreeFilter: (Int) => Boolean): Int
    Definition Classes
    GraphDegree
  226. def maxOption[B >: Param[N, E]](implicit ord: Ordering[B]): Option[Param[N, E]]
    Definition Classes
    IterableOnceOps
  227. def min[B >: Param[N, E]](implicit ord: Ordering[B]): Param[N, E]
    Definition Classes
    IterableOnceOps
  228. def minBy[B](f: (Param[N, E]) => B)(implicit cmp: Ordering[B]): Param[N, E]
    Definition Classes
    IterableOnceOps
  229. def minByOption[B](f: (Param[N, E]) => B)(implicit cmp: Ordering[B]): Option[Param[N, E]]
    Definition Classes
    IterableOnceOps
  230. def minDegree(implicit nodeDegree: DegreeFunction, degreeFilter: (Int) => Boolean): Int
    Definition Classes
    GraphDegree
  231. def minOption[B >: Param[N, E]](implicit ord: Ordering[B]): Option[Param[N, E]]
    Definition Classes
    IterableOnceOps
  232. final def minusIsolated(node: N): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike → GraphLike
    Annotations
    @inline()
  233. def minusMinus(delNodes: Iterable[N], delEdges: Iterable[E[N]]): DefaultGraphImpl[N, E]
    Attributes
    protected
    Definition Classes
    GraphLike → GraphLike
  234. def minusMinusNodesEdges(delNodes: Iterable[N], delEdges: Iterable[E[N]]): (Set[N], Set[E[N]])
    Attributes
    protected
    Definition Classes
    GraphLike
  235. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  236. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  237. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  238. val n1: DefaultGraphImpl[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toEdgeAssoc[DefaultGraphImpl[N, E]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  239. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  240. final def newEdge(innerEdge: E[NodeT]): EdgeT
    Attributes
    protected
    Definition Classes
    AdjacencyListGraph → GraphBase
    Annotations
    @inline()
  241. final def newEdgeTArray(size: Int): Array[EdgeT]
    Definition Classes
    AdjacencyListGraph → AdjacencyListBase
    Annotations
    @inline()
  242. final def newNode(n: N): NodeT
    Attributes
    protected
    Definition Classes
    AdjacencyListBase → GraphBase
    Annotations
    @inline()
  243. final def newNodeSet: NodeSetT
    Attributes
    protected
    Definition Classes
    DefaultGraphImpl → AdjacencyListBase
    Annotations
    @inline()
  244. final def newNodeWithHints(n: N, h: Hints): NodeBase
    Attributes
    protected
    Definition Classes
    DefaultGraphImpl → AdjacencyListBase
    Annotations
    @inline()
  245. def newPathBuilder(start: NodeT)(implicit sizeHint: Int, edgeSelector: (NodeT, NodeT) => Option[EdgeT]): PathBuilder
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  246. def newSpecificBuilder: Builder[Param[N, E], DefaultGraphImpl[N, E]]
    Attributes
    protected
    Definition Classes
    GraphAsSet → IterableFactoryDefaults → IterableOps
  247. def newWalkBuilder(start: NodeT)(implicit sizeHint: Int, edgeSelector: (NodeT, NodeT) => Option[EdgeT]): WalkBuilder
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  248. def nextHandle: Handle
    Attributes
    protected
    Definition Classes
    State
  249. final val noNode: NodeFilter
    Definition Classes
    GraphBase
  250. final def nodes: NodeSetT
    Definition Classes
    DefaultGraphImpl → AdjacencyListGraph → GraphBase
    Annotations
    @inline()
  251. def nodesToAdd(passedNodes: Iterable[N], passedEdges: Iterable[E[N]]): Set[N]
    Attributes
    protected
    Definition Classes
    ConstraintMethods
  252. def nodesToCEdgeCont[EE[+X] <: E[X] with CHyperEdgeBound[X]](factory: CHyperEdgeCompanion[EE], attrib: Product, node_1: N, node_2: N, nodes: N*)(implicit kind: CollectionKind): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  253. def nodesToCEdgeCont[EE[+X] <: E[X] with CEdgeBound[X]](factory: CEdgeCompanion[EE], attrib: Product, node_1: N, node_2: N): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  254. final def nodesToEdge(edgeFactory: HyperEdgeCompanion[E], node_1: N, node_2: N, nodes: N*)(implicit endpointsKind: CollectionKind): EdgeT
    Attributes
    protected
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  255. final def nodesToEdge(edgeFactory: EdgeCompanion[E], node_1: N, node_2: N): EdgeT
    Attributes
    protected
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  256. def nodesToEdgeCont(factory: EdgeCompanion[E], node_1: N, node_2: N): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  257. def nodesToEdgeCont(factory: HyperEdgeCompanion[E], node_1: N, node_2: N, nodes: N*)(implicit kind: CollectionKind): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  258. final def nodesToLEdge[EE[+X] <: E[X] with LHyperEdgeBound[X], L](edgeFactory: LHyperEdgeCompanion[EE], label: L, node_1: N, node_2: N, nodes: N*): EdgeT
    Attributes
    protected
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  259. final def nodesToLEdge[EE[+X] <: E[X] with LEdgeBound[X], L](edgeFactory: LEdgeCompanion[EE], label: L, node_1: N, node_2: N): EdgeT
    Attributes
    protected
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  260. def nodesToLEdgeCont[EE[+X] <: E[X] with LEdgeBound[X], L](factory: LEdgeCompanion[EE], label: L, node_1: N, node_2: N): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  261. def nodesToLEdgeCont[EE[+X] <: E[X] with LHyperEdgeBound[X], L](factory: LHyperEdgeCompanion[EE], label: L, node_1: N, node_2: N, nodes: N*)(implicit kind: CollectionKind): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  262. final def nodesToWEdge[EE[+X] <: E[X] with WHyperEdgeBound[X]](edgeFactory: WHyperEdgeCompanion[EE], weight: Double, node_1: N, node_2: N, nodes: N*)(implicit kind: CollectionKind): EdgeT
    Attributes
    protected
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  263. final def nodesToWEdge[EE[+X] <: E[X] with WEdgeBound[X]](edgeFactory: WEdgeCompanion[EE], weight: Double, node_1: N, node_2: N): EdgeT
    Attributes
    protected
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  264. def nodesToWEdgeCont[EE[+X] <: E[X] with WEdgeBound[X]](factory: WEdgeCompanion[EE], weight: Double, node_1: N, node_2: N): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  265. def nodesToWEdgeCont[EE[+X] <: E[X] with WHyperEdgeBound[X]](factory: WHyperEdgeCompanion[EE], weight: Double, node_1: N, node_2: N, nodes: N*)(implicit kind: CollectionKind): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  266. final def nodesToWLEdge[EE[+X] <: E[X] with WLHyperEdgeBound[X], L](edgeFactory: WLHyperEdgeCompanion[EE], weight: Double, label: L, node_1: N, node_2: N, nodes: N*)(implicit kind: CollectionKind): EdgeT
    Attributes
    protected
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  267. final def nodesToWLEdge[EE[+X] <: E[X] with WLEdgeBound[X], L](edgeFactory: WLEdgeCompanion[EE], weight: Double, label: L, node_1: N, node_2: N): EdgeT
    Attributes
    protected
    Definition Classes
    EdgeOps
    Annotations
    @inline()
  268. def nodesToWLEdgeCont[EE[+X] <: E[X] with WLEdgeBound[X], L](factory: WLEdgeCompanion[EE], weight: Double, label: L, node_1: N, node_2: N): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  269. def nodesToWLEdgeCont[EE[+X] <: E[X] with WLHyperEdgeBound[X], L](factory: WLHyperEdgeCompanion[EE], weight: Double, label: L, node_1: N, node_2: N, nodes: N*)(implicit kind: CollectionKind): E[NodeT]
    Attributes
    protected[collection]
    Definition Classes
    EdgeOps
  270. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  271. final def nonTrivial: Boolean
    Definition Classes
    GraphBase
    Annotations
    @inline()
  272. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  273. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  274. def order: Int
    Definition Classes
    GraphBase
  275. def outerEdgeTraverser(root: NodeT, parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): OuterEdgeTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  276. def outerElemTraverser(root: NodeT, parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): OuterElemTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  277. def outerNodeDownUpTraverser(root: NodeT, parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): OuterNodeDownUpTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  278. def outerNodeTraverser(root: NodeT, parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): OuterNodeTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  279. final def partition(elems: IterableOnce[Param[N, E]]): Partitions[N, E]
    Attributes
    protected
    Definition Classes
    GraphLike
  280. def partition(p: (Param[N, E]) => Boolean): (DefaultGraphImpl[N, E], DefaultGraphImpl[N, E])
    Definition Classes
    IterableOps
  281. def partitionMap[A1, A2](f: (Param[N, E]) => Either[A1, A2]): (AnySet[A1], AnySet[A2])
    Definition Classes
    IterableOps
  282. def pipe[B](f: (DefaultGraphImpl[N, E]) => B): B
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toChainingOps[DefaultGraphImpl[N, E]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  283. def plusPlus(newNodes: Iterable[N], newEdges: Iterable[E[N]]): DefaultGraphImpl[N, E]
    Attributes
    protected
    Definition Classes
    GraphLike → GraphLike
  284. def postAdd(newGraph: DefaultGraphImpl[N, E], passedNodes: Iterable[N], passedEdges: Iterable[E[N]], preCheck: PreCheckResult): Either[PostCheckFailure, DefaultGraphImpl[N, E]]

    This post-check must return whether newGraph should be committed or the add operation is to be rolled back.

    This post-check must return whether newGraph should be committed or the add operation is to be rolled back. Use self to access the associated graph. For immutable graphs, self maintains the state before the addition but for mutable graphs, it is already mutated to the required state.

    newGraph

    the after-addition would-be graph waiting for commit.

    passedNodes

    the normalized nodes passed to the add operation.

    passedEdges

    the normalized edges passed to the add operation.

    preCheck

    the result of preAdd.

    returns

    None to accept newGraph or Some reason for constraint violation resp. rejection

    Definition Classes
    ConstraintMethods
  285. def postSubtract(newGraph: DefaultGraphImpl[N, E], passedNodes: Iterable[N], passedEdges: Iterable[E[N]], preCheck: PreCheckResult): Either[PostCheckFailure, DefaultGraphImpl[N, E]]

    This post-check must return whether newGraph should be committed or the subtraction is to be rolled back.

    This post-check must return whether newGraph should be committed or the subtraction is to be rolled back. Use self to access the associated graph. For immutable graphs, self maintains the state before the addition but for mutable graphs, it is already mutated to the required state.

    newGraph

    the after-subtraction would-be graph waiting for commit.

    passedNodes

    the normalized nodes passed to the subtraction operation.

    passedEdges

    the normalized edges passed to the subtraction operation.

    preCheck

    the result of preSubtract.

    returns

    None to accept newGraph or Some reason for constraint violation resp. rejection

    Definition Classes
    ConstraintMethods
  286. def preAdd(elems: InParam[N, E]*): PreCheckResult

    This pre-check must return Abort if the addition of the outer nodes and/or edges in elems is to be canceled, PostCheck if postAdd is to be called to decide or Complete if the the outer nodes and/or edges are allowed to be added.

    This pre-check must return Abort if the addition of the outer nodes and/or edges in elems is to be canceled, PostCheck if postAdd is to be called to decide or Complete if the the outer nodes and/or edges are allowed to be added. If postAdd has been implemented, this method may always return PostCheck. The default implementation calls preAdd(node)/preAdd(edge) element-wise. As for most cases this won't be satisfactory a domain-specific implementation should be provided. Use self to access the associated graph.

    elems

    nodes and/or edges to be added possibly containing duplicates.

    returns

    The results of the pre-check containing the follow-up activity and possibly any intermediate computation result to be used during the post-check. To add computation results PreCheckResult must be extended.

    Definition Classes
    ConstraintMethods
  287. def preCreate(nodes: Iterable[N], edges: Iterable[E[N]]): PreCheckResult

    This pre-check is called on constructing a graph through its companion object.

    This pre-check is called on constructing a graph through its companion object. It must return whether the graph is allowed to be populated with nodes and edges. The default implementation calls preAdd for each node and edge.

    Note that nodes and edges coming from node/edge input streams are not checked. So when utilizing streams the post check postAdd must be served.

    nodes

    the outer nodes the graph is to be populated with; nodes being edge ends may but need not be contained in nodes.

    edges

    the outer edges the graph is to be populated with.

    returns

    The results of the pre-check containing the follow-up activity and possibly any intermediate computation result to be used during the post-check. To add computation results PreCheckResult must be extended.

    Definition Classes
    ConstraintMethods
  288. def preSubtract(nodes: => Set[NodeT], edges: => Set[EdgeT], simple: Boolean): PreCheckResult

    This pre-check must return Abort if the subtraction of nodes and/or edges is to be canceled, PostCheck if postSubtract is to be called to decide or Complete if nodes and/or edges are allowed to be subtracted.

    This pre-check must return Abort if the subtraction of nodes and/or edges is to be canceled, PostCheck if postSubtract is to be called to decide or Complete if nodes and/or edges are allowed to be subtracted. It is typically triggered by the -- operation. The default implementation element-wise calls preSubtract(node, simple) or preSubtract(edge, simple), respectively. As for most cases this won't be satisfactory a domain-specific implementation should be provided. Use self to access the associated graph.

    nodes

    the inner nodes to be subtracted not necessarily including the ends of edges to be subtracted. Call allNodes to get the complete set of nodes to be subtracted.

    edges

    the inner edges to be subtracted.

    simple

    true for standard (edge-only by -), false for ripple (by -!) removal.

    returns

    The results of the pre-check containing the follow-up activity and possibly any intermediate computation result to be used during the post-check. To add computation results PreCheckResult must be extended.

    Definition Classes
    ConstraintMethods
  289. def product[B >: Param[N, E]](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  290. def productElementNames: Iterator[String]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Product
  291. def reduce[B >: Param[N, E]](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  292. def reduceLeft[B >: Param[N, E]](op: (B, Param[N, E]) => B): B
    Definition Classes
    IterableOnceOps
  293. def reduceLeftOption[B >: Param[N, E]](op: (B, Param[N, E]) => B): Option[B]
    Definition Classes
    IterableOnceOps
  294. def reduceOption[B >: Param[N, E]](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  295. def reduceRight[B >: Param[N, E]](op: (Param[N, E], B) => B): B
    Definition Classes
    IterableOnceOps
  296. def reduceRightOption[B >: Param[N, E]](op: (Param[N, E], B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  297. def releaseHandle(handle: Handle): Unit
    Attributes
    protected
    Definition Classes
    State
  298. final def remove(edge: E[N]): Boolean
    Definition Classes
    GraphLike
    Annotations
    @inline()
  299. final def remove(node: N): Boolean
    Definition Classes
    GraphLike
    Annotations
    @inline()
  300. final def removeGently(node: N): Boolean
    Definition Classes
    GraphLike
    Annotations
    @inline()
  301. final def removeWithNodes(edge: E[N]): Boolean
    Definition Classes
    GraphLike
    Annotations
    @inline()
  302. def remove_?(edge: E[N]): Either[ConstraintViolation, Boolean]

    Same as remove but $Info.

    Same as remove but $Info.

    Definition Classes
    AdjacencyListGraphGraphOps
  303. def remove_?(node: N): Either[ConstraintViolation, Boolean]

    Same as remove but $Info.

    Same as remove but $Info.

    Definition Classes
    AdjacencyListGraphGraphOps
  304. def reversed: Iterable[Param[N, E]]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  305. def scan[B >: Param[N, E]](z: B)(op: (B, B) => B): AnySet[B]
    Definition Classes
    IterableOps
  306. def scanLeft[B](z: B)(op: (B, Param[N, E]) => B): AnySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  307. def scanRight[B](z: B)(op: (Param[N, E], B) => B): AnySet[B]
    Definition Classes
    IterableOps
  308. final def serializeTo(out: ObjectOutputStream): Unit
    Attributes
    protected
    Definition Classes
    AdjacencyListBase
  309. def size: Int
    Definition Classes
    IterableOnceOps
  310. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  311. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  312. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  313. def slice(from: Int, until: Int): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps → IterableOnceOps
  314. def sliding(size: Int, step: Int): Iterator[DefaultGraphImpl[N, E]]
    Definition Classes
    IterableOps
  315. def sliding(size: Int): Iterator[DefaultGraphImpl[N, E]]
    Definition Classes
    IterableOps
  316. def span(p: (Param[N, E]) => Boolean): (DefaultGraphImpl[N, E], DefaultGraphImpl[N, E])
    Definition Classes
    IterableOps → IterableOnceOps
  317. def splitAt(n: Int): (DefaultGraphImpl[N, E], DefaultGraphImpl[N, E])
    Definition Classes
    IterableOps → IterableOnceOps
  318. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Param[N, E], S]): S
    Definition Classes
    IterableOnce
  319. def stringPrefix: String
    Definition Classes
    GraphLike → GraphLike → Set → Iterable
  320. def strongComponentTraverser(parameters: Parameters, subgraphNodes: NodeFilter, subgraphEdges: EdgeFilter, ordering: ElemOrdering, maxWeight: Option[Weight]): StrongComponentTraverser
    Definition Classes
    GraphTraversalImpl → GraphTraversal
  321. def subsetOf(that: Set[Param[N, E]]): Boolean
    Definition Classes
    SetOps
  322. def subsets(): Iterator[DefaultGraphImpl[N, E]]
    Definition Classes
    SetOps
  323. def subsets(len: Int): Iterator[DefaultGraphImpl[N, E]]
    Definition Classes
    SetOps
  324. def subtractAll(xs: scala.collection.IterableOnce[Param[N, E]]): DefaultGraphImpl.this.type
    Definition Classes
    Shrinkable
  325. def subtractOne(elem: Param[N, E]): DefaultGraphImpl.this.type
    Definition Classes
    GraphLike → Shrinkable
  326. def sum[B >: Param[N, E]](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  327. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  328. val t: Set[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toTraversableEnrichments[Param[N, E], Set] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
    Definition Classes
    TraversableEnrichments
  329. def tail: DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps
  330. def tails: Iterator[DefaultGraphImpl[N, E]]
    Definition Classes
    IterableOps
  331. def take(n: Int): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps → IterableOnceOps
  332. def takeRight(n: Int): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps
  333. def takeWhile(p: (Param[N, E]) => Boolean): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps → IterableOnceOps
  334. def tap[U](f: (DefaultGraphImpl[N, E]) => U): DefaultGraphImpl[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toChainingOps[DefaultGraphImpl[N, E]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  335. def tapEach[U](f: (Param[N, E]) => U): DefaultGraphImpl[N, E]
    Definition Classes
    IterableOps → IterableOnceOps
  336. def to[C1](factory: Factory[Param[N, E], C1]): C1
    Definition Classes
    IterableOnceOps
  337. def toArray[B >: Param[N, E]](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  338. final def toBuffer[B >: Param[N, E]]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  339. def toIndexedSeq: IndexedSeq[Param[N, E]]
    Definition Classes
    IterableOnceOps
  340. final def toIterable: DefaultGraphImpl.this.type
    Definition Classes
    Iterable → IterableOps
  341. def toList: List[Param[N, E]]
    Definition Classes
    IterableOnceOps
  342. def toMSet: MSet[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableEnrichments[Param[N, E]] performed by method IterableEnrichments in scalax.collection.Compat.
    Definition Classes
    IterableEnrichments
  343. def toMap[K, V](implicit ev: <:<[Param[N, E], (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  344. def toOuterNodes[E[+X] <: EdgeLike[X]]: Seq[InParam[Param[N, E], E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toTraversableEnrichments[Param[N, E], Set] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
    Definition Classes
    TraversableEnrichments
  345. def toSeq: Seq[Param[N, E]]
    Definition Classes
    IterableOnceOps
  346. def toSet[B >: Param[N, E]]: Set[B]
    Definition Classes
    IterableOnceOps
  347. def toSortedString(nodeSeparator: String, edgeSeparator: String, nodesEdgesSeparator: String, withNodesEdgesPrefix: Boolean)(implicit ordNode: NodeOrdering, ordEdge: EdgeOrdering): String
    Definition Classes
    GraphLike
  348. def toString(): String
    Definition Classes
    GraphLike → Set → Function1 → Iterable → AnyRef → Any
  349. def toVector: Vector[Param[N, E]]
    Definition Classes
    IterableOnceOps
  350. final def topologicalSort[U](implicit visitor: (InnerElem) => U): CycleNodeOrTopologicalOrder
    Definition Classes
    GraphTraversal
  351. final def topologicalSortByComponent[U](implicit visitor: (InnerElem) => U): Iterable[CycleNodeOrTopologicalOrder]
    Definition Classes
    GraphTraversal
  352. def totalDegree(implicit nodeDegree: DegreeFunction, degreeFilter: (Int) => Boolean): Int
    Definition Classes
    GraphDegree
  353. def totalWeight: Double
    Definition Classes
    GraphBase
  354. def transpose[B](implicit asIterable: (Param[N, E]) => Iterable[B]): AnySet[AnySet[B]]
    Definition Classes
    IterableOps
  355. final def union(that: Set[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    SetOps
    Annotations
    @inline()
  356. def unzip[A1, A2](implicit asPair: (Param[N, E]) => (A1, A2)): (AnySet[A1], AnySet[A2])
    Definition Classes
    IterableOps
  357. def unzip3[A1, A2, A3](implicit asTriple: (Param[N, E]) => (A1, A2, A3)): (AnySet[A1], AnySet[A2], AnySet[A3])
    Definition Classes
    IterableOps
  358. final def upsert(edge: E[N]): Boolean
    Definition Classes
    AdjacencyListGraph → GraphLike
    Annotations
    @inline()
  359. val value: DefaultGraphImpl[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNode → NodeParam
  360. def view: View[Param[N, E]]
    Definition Classes
    IterableOps
  361. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  362. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  363. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  364. def withFilter(p: (Param[N, E]) => Boolean): WithFilter[Param[N, E], [_]AnySet[_]]
    Definition Classes
    IterableOps
  365. def withHandle[T](reuse: Option[Handle])(block: (Handle) => T): T
    Attributes
    protected
    Definition Classes
    State
  366. def withHandles[T](nr: Int, reuse: Array[Handle])(block: (Array[Handle]) => T): T
    Attributes
    protected
    Definition Classes
    State
  367. final def withoutChecks[R](exec: => R): R
    Attributes
    protected
    Definition Classes
    GraphLike
  368. def zip[B](that: scala.collection.IterableOnce[B]): AnySet[(Param[N, E], B)]
    Definition Classes
    IterableOps
  369. def zipAll[A1 >: Param[N, E], B](that: Iterable[B], thisElem: A1, thatElem: B): AnySet[(A1, B)]
    Definition Classes
    IterableOps
  370. def zipWithIndex: AnySet[(Param[N, E], Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  371. final def |(that: Set[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    SetOps
    Annotations
    @inline()
  372. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toEdgeAssoc[DefaultGraphImpl[N, E]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  373. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toEdgeAssoc[DefaultGraphImpl[N, E]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  374. object Edge extends Serializable
    Definition Classes
    GraphBase
    Annotations
    @transient()
  375. object InnerNode extends Serializable
    Definition Classes
    GraphBase
  376. object Node extends Serializable
    Definition Classes
    GraphBase
    Annotations
    @transient()
  377. object TraverserInnerNode extends Serializable
    Definition Classes
    GraphTraversal
    Annotations
    @transient()

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toany2stringadd[DefaultGraphImpl[N, E]] performed by method any2stringadd in scala.Predef.
    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:
    (defaultGraphImpl: any2stringadd[DefaultGraphImpl[N, E]]).+(other)
    Definition Classes
    any2stringadd
  2. def andThen[A](g: (Boolean) => A): (Param[Param[N, E], EI]) => A
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] to(Param[Param[N, E], 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:
    (defaultGraphImpl: (Param[Param[N, E], EI]) => Boolean).andThen(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  3. def apply(v1: Param[Param[N, E], EI]): Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] to(Param[Param[N, E], 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:
    (defaultGraphImpl: (Param[Param[N, E], EI]) => Boolean).apply(v1)
    Definition Classes
    Function1
  4. def compose[A](g: (A) => Param[Param[N, E], EI]): (A) => Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] to(Param[Param[N, E], 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:
    (defaultGraphImpl: (Param[Param[N, E], EI]) => Boolean).compose(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  5. val self: DefaultGraphImpl[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toChainingOps[DefaultGraphImpl[N, E]] performed by method ChainingOps in scalax.collection.
    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:
    (defaultGraphImpl: ChainingOps[DefaultGraphImpl[N, E]]).self
    Definition Classes
    ChainingOps
  6. val self: Iterable[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableEnrichments[Param[N, E]] performed by method IterableEnrichments in scalax.collection.Compat.
    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:
    (defaultGraphImpl: IterableEnrichments[Param[N, E]]).self
    Definition Classes
    IterableEnrichments
  7. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] 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:
    (defaultGraphImpl: OuterNode[DefaultGraphImpl[N, E]]).stringPrefix
    Definition Classes
    NodeParam
  8. def toString(): String
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] to(Param[Param[N, E], 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:
    (defaultGraphImpl: (Param[Param[N, E], EI]) => Boolean).toString()
    Definition Classes
    Function1 → AnyRef → Any
  9. def toString(): String
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toOuterNode[DefaultGraphImpl[N, E]] 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:
    (defaultGraphImpl: OuterNode[DefaultGraphImpl[N, E]]).toString()
    Definition Classes
    NodeParam → AnyRef → Any

Deprecated Value Members

  1. def +(elem1: Param[N, E], elem2: Param[N, E], elems: Param[N, E]*): DefaultGraphImpl[N, E]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ with an explicit collection argument instead of + with varargs

  2. def ++:[B >: Param[N, E]](that: scala.collection.IterableOnce[B]): AnySet[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  3. final def +=(elem1: Param[N, E], elem2: Param[N, E], elems: Param[N, E]*): DefaultGraphImpl.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= (addAll) instead of varargs +=

  4. def -(elem1: Param[N, E], elem2: Param[N, E], elems: Param[N, E]*): DefaultGraphImpl[N, E]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use &- with an explicit collection argument instead of - with varargs

  5. def -!(elem: Param[N, E]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike
    Annotations
    @deprecated
    Deprecated

    (Since version 1.13) When deleting an edge, to get nodes deleted that become isolated, delete them beforehand.

  6. def --!(elems: IterableOnce[Param[N, E]]): DefaultGraphImpl[N, E]
    Definition Classes
    GraphLike
    Annotations
    @deprecated
    Deprecated

    (Since version 1.13) When deleting edges, to get nodes deleted that become isolated, delete them beforehand.

  7. def /:[B](z: B)(op: (B, Param[N, E]) => B): B
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  8. final def /:[B](z: B)(op: (B, Param[N, E]) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  9. def :\[B](z: B)(op: (Param[N, E], B) => B): B
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  10. final def :\[B](z: B)(op: (Param[N, E], B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  11. def aggregate[B](z: => B)(seqop: (B, Param[N, E]) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  12. def collectFirst[B](f: PartialFunction[Param[N, E], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  13. def companion: IterableFactory[[_]AnySet[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  14. def copyToBuffer(dest: Buffer[Param[N, E]]): Unit
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  15. final def copyToBuffer[B >: Param[N, E]](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  16. def count(f: (Param[N, E]) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  17. def exists(f: (Param[N, E]) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  18. def filter(f: (Param[N, E]) => Boolean): Iterator[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  20. def find(p: (Param[N, E]) => Boolean): Option[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  21. def flatMap[B](f: (Param[N, E]) => scala.collection.IterableOnce[B]): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  22. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  23. def foldLeft[B](z: B)(op: (B, Param[N, E]) => B): B
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  24. def foldRight[B](z: B)(op: (Param[N, E], B) => B): B
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  25. def forall(f: (Param[N, E]) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  26. def foreach[U](f: (Param[N, E]) => U): Unit
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  27. 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)

  28. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  29. def map[B](f: (Param[N, E]) => B): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  30. def max(implicit ord: Ordering[Param[N, E]]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  31. def maxBy[B](f: (Param[N, E]) => B)(implicit cmp: Ordering[B]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  32. def min(implicit ord: Ordering[Param[N, E]]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  33. def minBy[B](f: (Param[N, E]) => B)(implicit cmp: Ordering[B]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  34. def mkString: String
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  35. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  36. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  37. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  38. def product(implicit num: Numeric[Param[N, E]]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  39. def reduce(f: (Param[N, E], Param[N, E]) => Param[N, E]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  40. def reduceLeft(f: (Param[N, E], Param[N, E]) => Param[N, E]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  41. def reduceLeftOption(f: (Param[N, E], Param[N, E]) => Param[N, E]): Option[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  42. def reduceOption(f: (Param[N, E], Param[N, E]) => Param[N, E]): Option[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  43. def reduceRight(f: (Param[N, E], Param[N, E]) => Param[N, E]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  44. def reduceRightOption(f: (Param[N, E], Param[N, E]) => Param[N, E]): Option[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  45. final def repr: DefaultGraphImpl[N, E]
    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

  46. def sameElements[B >: A](that: scala.collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  47. def seq: DefaultGraphImpl.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  48. def size: Int
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  49. def sum(implicit num: Numeric[Param[N, E]]): Param[N, E]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  50. def to[C1](factory: Factory[Param[N, E], C1]): C1
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  51. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  52. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  53. def toIndexedSeq: IndexedSeq[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  54. final def toIterable: Iterable[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  55. def toIterator: Iterator[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  56. final def toIterator: Iterator[Param[N, E]]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  57. def toList: List[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  58. def toMap[K, V](implicit ev: <:<[Param[N, E], (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  59. def toSeq: Seq[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  60. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  61. def toStream: Stream[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  62. final def toStream: Stream[Param[N, E]]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  63. final def toTraversable: Traversable[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  64. final def toTraversable: Traversable[Param[N, E]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  65. def toVector: Vector[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  66. def view(from: Int, until: Int): View[Param[N, E]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  67. def withFilter(f: (Param[N, E]) => Boolean): Iterator[Param[N, E]]
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toIterableOnceExtensionMethods[Param[N, E]] 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:
    (defaultGraphImpl: IterableOnceExtensionMethods[Param[N, E]]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  68. def [B](y: B): (DefaultGraphImpl[N, E], B)
    Implicit
    This member is added by an implicit conversion from DefaultGraphImpl[N, E] toArrowAssoc[DefaultGraphImpl[N, E]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from GraphTraversalImpl[N, E]

Inherited from State[N, E]

Inherited from TraverserImpl[N, E]

Inherited from AdjacencyListGraph[N, E, DefaultGraphImpl]

Inherited from mutable.AdjacencyListGraph[N, E, DefaultGraphImpl]

Inherited from AdjacencyListBase[N, E, DefaultGraphImpl]

Inherited from AddSubtract[Param[N, E], DefaultGraphImpl[N, E]]

Inherited from Graph[N, E]

Inherited from GraphLike[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]]

Inherited from GraphOps[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]]

Inherited from constrained.Graph[N, E]

Inherited from constrained.GraphLike[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]]

Inherited from Constrained[N, E, DefaultGraphImpl[N, E]]

Inherited from ConstraintMethods[N, E, DefaultGraphImpl[N, E]]

Inherited from constrained.GraphOps[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]]

Inherited from mutable.Graph[N, E]

Inherited from mutable.GraphLike[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]]

Inherited from EdgeOps[N, E, [X, Y[+X]]DefaultGraphImpl[X, Y]]

Inherited from Cloneable[DefaultGraphImpl[N, E]]

Inherited from Cloneable

Inherited from Shrinkable[Param[N, E]]

Inherited from Growable[Param[N, E]]

Inherited from Clearable

Inherited from collection.Graph[N, E]

Inherited from collection.GraphLike[N, E, [NN, EE[+XX]]DefaultGraphImpl[NN, EE]]

Inherited from GraphDegree[N, E]

Inherited from GraphTraversal[N, E]

Inherited from GraphBase[N, E]

Inherited from Serializable

Inherited from GraphAsSet[N, E, [NN, EE[+XX]]DefaultGraphImpl[NN, EE]]

Inherited from Set[Param[N, E]]

Inherited from Equals

Inherited from SetOps[Param[N, E], [_]AnySet[_], DefaultGraphImpl[N, E]]

Inherited from (Param[N, E]) => Boolean

Inherited from Iterable[Param[N, E]]

Inherited from IterableFactoryDefaults[Param[N, E], [x]Set[x]]

Inherited from IterableOps[Param[N, E], [_]AnySet[_], DefaultGraphImpl[N, E]]

Inherited from IterableOnceOps[Param[N, E], [_]AnySet[_], DefaultGraphImpl[N, E]]

Inherited from scala.collection.IterableOnce[Param[N, E]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromDefaultGraphImpl[N, E] to IterableOnceExtensionMethods[Param[N, E]]

Inherited by implicit conversion EdgeAssoc fromDefaultGraphImpl[N, E] to EdgeAssoc[DefaultGraphImpl[N, E]]

Inherited by implicit conversion predicateToNodePredicate fromDefaultGraphImpl[N, E] to (Param[Param[N, E], EI]) => Boolean

Inherited by implicit conversion TraversableEnrichments fromDefaultGraphImpl[N, E] to TraversableEnrichments[Param[N, E], Set]

Inherited by implicit conversion anyToNode fromDefaultGraphImpl[N, E] to OuterNode[DefaultGraphImpl[N, E]]

Inherited by implicit conversion ChainingOps fromDefaultGraphImpl[N, E] to ChainingOps[DefaultGraphImpl[N, E]]

Inherited by implicit conversion IterableEnrichments fromDefaultGraphImpl[N, E] to IterableEnrichments[Param[N, E]]

Inherited by implicit conversion any2stringadd fromDefaultGraphImpl[N, E] to any2stringadd[DefaultGraphImpl[N, E]]

Inherited by implicit conversion StringFormat fromDefaultGraphImpl[N, E] to StringFormat[DefaultGraphImpl[N, E]]

Inherited by implicit conversion Ensuring fromDefaultGraphImpl[N, E] to Ensuring[DefaultGraphImpl[N, E]]

Inherited by implicit conversion ArrowAssoc fromDefaultGraphImpl[N, E] to ArrowAssoc[DefaultGraphImpl[N, E]]

Ungrouped