Trait

scalax.collection.immutable

AdjacencyListBase

Related Doc: package immutable

Permalink

trait AdjacencyListBase[N, E[X] <: EdgeLikeIn[X], +This[X, Y[X] <: EdgeLikeIn[X]] <: GraphLike[X, Y[X], This] with Set[Param[X, Y[X]]] with collection.Graph[X, Y[X]]] extends GraphLike[N, E, This]

Implementation of an incident list based graph representation. This trait is common to both the immutable and mutable variants. An incidence list based representation speeds up traversing the graph along its paths by storing the list of connecting edges at each node.

Self Type
AdjacencyListBase[N, E, This] with This[N, E]
Linear Supertypes
GraphLike[N, E, This], GraphDegree[N, E], GraphTraversal[N, E], GraphBase[N, E], Serializable, Serializable, SetLike[Param[N, E], This[N, E]], Subtractable[Param[N, E], This[N, E]], GenSetLike[Param[N, E], This[N, E]], (Param[N, E]) ⇒ Boolean, IterableLike[Param[N, E], This[N, E]], GenIterableLike[Param[N, E], This[N, E]], TraversableLike[Param[N, E], This[N, E]], GenTraversableLike[Param[N, E], This[N, E]], Parallelizable[Param[N, E], ParSet[Param[N, E]]], TraversableOnce[Param[N, E]], GenTraversableOnce[Param[N, E]], FilterMonadic[Param[N, E], This[N, E]], HasNewBuilder[Param[N, E], This[N, E]], Equals, AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AdjacencyListBase
  2. GraphLike
  3. GraphDegree
  4. GraphTraversal
  5. GraphBase
  6. Serializable
  7. Serializable
  8. SetLike
  9. Subtractable
  10. GenSetLike
  11. Function1
  12. IterableLike
  13. GenIterableLike
  14. TraversableLike
  15. GenTraversableLike
  16. Parallelizable
  17. TraversableOnce
  18. GenTraversableOnce
  19. FilterMonadic
  20. HasNewBuilder
  21. Equals
  22. AnyRef
  23. Any
Implicitly
  1. by anyToNode
  2. by CollectionsHaveToParArray
  3. by MonadOps
  4. by EdgeAssoc
  5. by predicateToNodePredicate
  6. by any2stringadd
  7. by StringFormat
  8. by Ensuring
  9. by ArrowAssoc
  10. by alternateImplicit
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class AbstractTopologicalOrder[+A, +T] extends AbstractTraversable[T]

    Permalink

    Topologically ordered nodes or layers of a topological order of a graph or of an isolated graph component.

    Topologically ordered nodes or layers of a topological order of a graph or of an isolated graph component.

    A

    one of NodeT, N

    T

    one of A or (Int, Iterable[A])

    Definition Classes
    GraphTraversal
  2. abstract class Component extends Properties

    Permalink

    Represents a component of this graph with an underlying lazy implementation.

    Represents a component of this graph with an underlying lazy implementation. Instances will be created by traversals based on componentTraverser.

    Attributes
    protected
    Definition Classes
    GraphTraversal
  3. abstract class ComponentTraverser extends FluentProperties[ComponentTraverser] with Properties with Traversable[Component]

    Permalink

    Controls the properties of graph traversals with no specific root.

    Controls the properties of graph traversals with no specific root. Provides methods to refine the properties and to invoke multiple traversals to span all graph components.

    Attributes
    protected
    Definition Classes
    GraphTraversal
  4. abstract type Config <: GraphConfig with AdjacencyListArrayConfig

    Permalink
    Attributes
    protected
    Definition Classes
    AdjacencyListBaseGraphLike
  5. trait Cycle extends Path

    Permalink

    Represents a cycle in this graph listing the nodes and connecting edges on it with the following syntax:

    Represents a cycle in this graph listing the nodes and connecting edges on it with the following syntax:

    cycle ::= start-end-node { edge node } edge start-end-node

    All nodes and edges on the path are distinct except the start and end nodes that are equal. A cycle contains at least a start node followed by any number of consecutive pairs of an edge and a node and the end node equaling to the start node. The first element is the start node, the second is an edge with its tail being the start node and its head being the third element etc.

    Definition Classes
    GraphTraversal
  6. type CycleNodeOrTopologicalOrder = Either[(AdjacencyListBase.this)#NodeT, (AdjacencyListBase.this)#TopologicalOrder[(AdjacencyListBase.this)#NodeT]]

    Permalink

    Either a Right containing a valid topological order or a Left containing a node on a cycle.

    Either a Right containing a valid topological order or a Left containing a node on a cycle.

    Definition Classes
    GraphTraversal
  7. trait DegreeFunction extends ((GraphDegree.this)#NodeT) ⇒ Int

    Permalink
    Definition Classes
    GraphDegree
  8. type DegreeNodeSeqEntry = (Int, (AdjacencyListBase.this)#NodeT)

    Permalink

    Type alias for entries in degree maps returned by degreeSeqMap.

    Type alias for entries in degree maps returned by degreeSeqMap.

    Definition Classes
    GraphDegree
  9. final class DegreeOrdering extends Ordering[(GraphDegree.this)#NodeT]

    Permalink

    Decreasing ordering of nodes with respect to their degree.

    Decreasing ordering of nodes with respect to their degree.

    Definition Classes
    GraphDegree
  10. trait Edge extends Serializable

    Permalink
    Definition Classes
    GraphBase
  11. class EdgeBase extends InnerEdgeParam[N, E, NodeT, E] with InnerEdge

    Permalink
    Definition Classes
    GraphBase
  12. type EdgeFilter = ((AdjacencyListBase.this)#EdgeT) ⇒ Boolean

    Permalink
    Definition Classes
    GraphBase
  13. sealed trait EdgeOrdering extends Ordering[EdgeT] with ElemOrdering

    Permalink
    Definition Classes
    GraphBase
  14. trait EdgeSet extends (AdjacencyListBase.this)#EdgeSet

    Permalink
  15. abstract type EdgeSetT <: (AdjacencyListBase.this)#EdgeSet

    Permalink
    Definition Classes
    AdjacencyListBaseGraphLikeGraphBase
  16. abstract type EdgeT <: InnerEdgeParam[N, E, (AdjacencyListBase.this)#NodeT, E] with (AdjacencyListBase.this)#InnerEdge with Serializable

    Permalink
    Definition Classes
    GraphBase
  17. sealed trait ElemOrdering extends AnyRef

    Permalink

    Base trait for graph Orderings.

    Base trait for graph Orderings.

    Attributes
    protected
    Definition Classes
    GraphBase
  18. trait ExtendedNodeVisitor[U] extends (NodeT) ⇒ U with (NodeT, Int, Int, ⇒ NodeInformer) ⇒ U

    Permalink

    Template for extended node visitors.

    Template for extended node visitors. While the default node visitor of the type NodeT => U passes solely the inner node being visited, extended node visitors pass the following traversal state information:

    1. the inner node currently visited as with a standard node visitor
    2. the number of nodes visited so far and
    3. the current depth in terms of the underlying algorithm and
    4. a reference to a specific informer that may be pattern matched to collect even further data specific to the implementation.
    Definition Classes
    GraphTraversal
  19. trait Filter[T] extends (T) ⇒ Boolean

    Permalink
    Definition Classes
    GraphDegree
  20. abstract class FluentProperties[+This <: FluentProperties[This]] extends AnyRef

    Permalink

    Properties and methods for creating modified properties in a fluent-interface manner.

    Properties and methods for creating modified properties in a fluent-interface manner.

    Attributes
    protected
    Definition Classes
    GraphTraversal
  21. trait InnerEdge extends Iterable[NodeT] with InnerEdgeParam[N, E, NodeT, E] with Edge with InnerElem

    Permalink
    Definition Classes
    GraphBase
  22. abstract class InnerEdgeTraverser extends TraverserMethods[EdgeT, InnerEdgeTraverser] with Traverser[EdgeT, InnerEdgeTraverser]

    Permalink

    Controls the properties of inner-edge graph traversals.

    Controls the properties of inner-edge graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    Definition Classes
    GraphTraversal
  23. sealed trait InnerElem extends AnyRef

    Permalink
    Definition Classes
    GraphBase
  24. abstract class InnerElemTraverser extends TraverserMethods[InnerElem, InnerElemTraverser] with Traverser[InnerElem, InnerElemTraverser]

    Permalink

    Controls the properties of inner-element graph traversals.

    Controls the properties of inner-element graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    Attributes
    protected
    Definition Classes
    GraphTraversal
  25. trait InnerNode extends (AdjacencyListBase.this)#InnerNode

    Permalink
  26. abstract class InnerNodeDownUpTraverser extends TraverserMethods[(Boolean, NodeT), InnerNodeDownUpTraverser] with Traverser[(Boolean, NodeT), InnerNodeDownUpTraverser]

    Permalink

    Controls the properties of inner-node down-up graph traversals.

    Controls the properties of inner-node down-up graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    Definition Classes
    GraphTraversal
  27. abstract class InnerNodeTraverser extends TraverserMethods[NodeT, InnerNodeTraverser] with Traverser[NodeT, InnerNodeTraverser]

    Permalink

    Controls the properties of inner-node graph traversals.

    Controls the properties of inner-node graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    Definition Classes
    GraphTraversal
  28. case class Layer(index: Int, nodes: IndexedSeq[NodeT]) extends Product with Serializable

    Permalink

    Represents a topological sort layer.

    Represents a topological sort layer.

    Definition Classes
    GraphTraversal
  29. final class LayeredTopologicalOrder[+A] extends AbstractTopologicalOrder[A, (Int, Iterable[A])]

    Permalink

    Layers of a topological order of a graph or of an isolated graph component.

    Layers of a topological order of a graph or of an isolated graph component. The layers of a topological sort can roughly be defined as follows:

    1. layer 0 contains all nodes having no predecessors,
    2. layer n contains those nodes that have only predecessors in anchestor layers with at least one of them contained in layer n - 1
    A

    one of NodeT, N

    Definition Classes
    GraphTraversal
  30. type Layers = Traversable[(AdjacencyListBase.this)#Layer]

    Permalink

    The result of a topological sort in the layered view.

    The result of a topological sort in the layered view.

    Definition Classes
    GraphTraversal
  31. trait Node extends Serializable

    Permalink
    Definition Classes
    GraphBase
  32. abstract class NodeBase extends This.NodeBase with InnerNodeParam[N] with This.InnerNode

    Permalink
    Attributes
    protected
    Definition Classes
    GraphLike
  33. type NodeFilter = ((AdjacencyListBase.this)#NodeT) ⇒ Boolean

    Permalink
    Definition Classes
    GraphBase
  34. sealed trait NodeOrdering extends Ordering[NodeT] with ElemOrdering

    Permalink

    Ordering for the path dependent type NodeT.

    Ordering for the path dependent type NodeT.

    Definition Classes
    GraphBase
  35. trait NodeSet extends (AdjacencyListBase.this)#NodeSet

    Permalink
  36. abstract type NodeSetT <: (AdjacencyListBase.this)#NodeSet

    Permalink
    Definition Classes
    AdjacencyListBaseGraphLikeGraphBase
  37. abstract type NodeT <: (AdjacencyListBase.this)#InnerNode

    Permalink
    Definition Classes
    AdjacencyListBaseGraphLikeGraphTraversalGraphBase
  38. abstract class OuterEdgeTraverser extends TraverserMethods[E[N], OuterEdgeTraverser] with Traverser[E[N], OuterEdgeTraverser]

    Permalink

    Controls the properties of outer-edge graph traversals.

    Controls the properties of outer-edge graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    Definition Classes
    GraphTraversal
  39. trait OuterElemTraverser extends TraverserMethods[OuterElem[N, E], OuterElemTraverser] with Traverser[OuterElem[N, E], OuterElemTraverser]

    Permalink

    Controls the properties of outer-element graph traversals.

    Controls the properties of outer-element graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    Definition Classes
    GraphTraversal
  40. abstract class OuterNodeDownUpTraverser extends TraverserMethods[(Boolean, N), OuterNodeDownUpTraverser] with Traverser[(Boolean, N), OuterNodeDownUpTraverser]

    Permalink

    Controls the properties of outer-node down-up graph traversals.

    Controls the properties of outer-node down-up graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    Definition Classes
    GraphTraversal
  41. abstract class OuterNodeTraverser extends TraverserMethods[N, OuterNodeTraverser] with Traverser[N, OuterNodeTraverser]

    Permalink

    Controls the properties of outer-node graph traversals.

    Controls the properties of outer-node graph traversals. To start a traversal call one of the graph traversal methods or any appropriate method inherited from scala.collection.Traversable on this instance.

    Definition Classes
    GraphTraversal
  42. trait Path extends Walk

    Permalink

    Represents a path in this graph where

    Represents a path in this graph where

    path ::= node { edge node }

    Nodes and edges on the path are distinct. A walk/path contains at least one node followed by any number of consecutive pairs of an edge and a node. The first element is the start node, the second is an edge with its source being the start node and its target being the third element etc.

    Definition Classes
    GraphTraversal
  43. trait PathBuilder extends WalkBuilder with Builder[InnerElem, Path]

    Permalink

    A Builder for valid paths in this graph.

    A Builder for valid paths in this graph.

    Nodes and edges may be added either alternating or node by node respectively edge by edge. Either way, the builder ensures that the added elements build a valid path.

    A node addition fails if either the node to be added is already contained or the node is not a direct successor of the previously added node or of the target node of the previously added edge. An edge addition fails if either the edge to be added is is already contained or the edge is not an outgoing edge from the previously added node or of the target node of the previously added edge.

    It is recommended using add instead of += to track failed additions.

    Definition Classes
    GraphTraversal
  44. trait Properties extends SubgraphProperties

    Permalink

    Properties controlling traversals.

    Properties controlling traversals.

    Attributes
    protected
    Definition Classes
    GraphTraversal
  45. type Self = This[N, E]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  46. trait SubgraphProperties extends AnyRef

    Permalink

    Properties controlling the scope of traversals.

    Properties controlling the scope of traversals.

    Attributes
    protected
    Definition Classes
    GraphTraversal
  47. type ThisGraph = AdjacencyListBase.this

    Permalink
    Attributes
    protected
    Definition Classes
    GraphLike
  48. final class TopologicalOrder[+A] extends AbstractTopologicalOrder[A, A]

    Permalink

    A traversable topological order of nodes of a graph or of an isolated graph component.

    A traversable topological order of nodes of a graph or of an isolated graph component.

    A

    one of NodeT, N

    Definition Classes
    GraphTraversal
  49. trait Traverser[A, +This <: Traverser[A, This]] extends TraverserMethods[A, This] with Properties with Traversable[A]

    Permalink

    Controls the properties of consecutive graph traversals starting at a root node.

    Controls the properties of consecutive graph traversals starting at a root node. Provides methods to refine the properties and to invoke traversals. Instances will be created by innerNodeTraverser etc.

    Definition Classes
    GraphTraversal
  50. trait TraverserInnerNode extends InnerNode

    Permalink
    Definition Classes
    GraphTraversal
  51. abstract class TraverserMethods[A, +This <: TraverserMethods[A, This]] extends FluentProperties[This]

    Permalink

    The root-related methods Traverser will inherit.

    The root-related methods Traverser will inherit.

    Attributes
    protected
    Definition Classes
    GraphTraversal
  52. trait Walk extends Traversable[InnerElem]

    Permalink

    Represents a walk in this graph where walk ::= node { edge node } A walk/path contains at least one node followed by any number of consecutive pairs of an edge and a node.

    Represents a walk in this graph where walk ::= node { edge node } A walk/path contains at least one node followed by any number of consecutive pairs of an edge and a node. The first element is the start node, the second is an edge with its source being the start node and its target being the third element etc.

    Definition Classes
    GraphTraversal
  53. trait WalkBuilder extends Builder[InnerElem, Walk]

    Permalink

    A Builder for valid walks in this graph.

    A Builder for valid walks in this graph.

    Nodes and edges may be added either alternating or node by node respectively edge by edge. Either way, the builder ensures that the added elements build a valid walk.

    A node addition fails if the node to be added is not a direct successor of the previously added node or of the target node of the previously added edge. An edge addition fails if the edge to be added is not an outgoing edge from the previously added node or of the target node of the previously added edge.

    It is recommended using add instead of += to track failed additions.

    Definition Classes
    GraphTraversal
  54. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def +(node: N): This[N, E]

    Permalink

    Creates a new supergraph with an additional node, unless the node passed is already present.

    Creates a new supergraph with an additional node, unless the node passed is already present.

    node

    the node to be added

    returns

    the new supergraph containing all nodes and edges of this graph and node additionally.

    Definition Classes
    GraphLike
  2. abstract def +#(edge: E[N]): This[N, E]

    Permalink

    Creates a new supergraph with an additional edge, unless the edge passed is already present.

    Creates a new supergraph with an additional edge, unless the edge passed is already present.

    edge

    the edge to be added

    returns

    the new supergraph containing all nodes and edges of this graph plus edge.

    Attributes
    protected
    Definition Classes
    GraphLike
  3. abstract def -(node: N): This[N, E]

    Permalink

    Creates a new subgraph consisting of all nodes and edges of this graph except node and those edges which node is incident with.

    Creates a new subgraph consisting of all nodes and edges of this graph except node and those edges which node is incident with.

    node

    the node to be removed.

    returns

    the new subgraph of this graph after the "ripple" deletion of node.

    Definition Classes
    GraphLike
  4. abstract def -!#(edge: E[N]): This[N, E]

    Permalink

    Creates a new subgraph consisting of all nodes and edges of this graph except edge and those nodes which are incident with edge and would become edge-less after deletion.

    Creates a new subgraph consisting of all nodes and edges of this graph except edge and those nodes which are incident with edge and would become edge-less after deletion.

    edge

    the edge to be removed.

    returns

    a new subgraph of this graph after the "ripple" deletion of edge from this graph.

    Attributes
    protected
    Definition Classes
    GraphLike
  5. abstract def -#(edge: E[N]): This[N, E]

    Permalink

    Creates a new subgraph consisting of all nodes and edges of this graph but edge.

    Creates a new subgraph consisting of all nodes and edges of this graph but edge. The node set remains unchanged.

    edge

    the edge to be removed.

    returns

    a new subgraph of this graph that contains all nodes and edges of this graph except of edge.

    Attributes
    protected
    Definition Classes
    GraphLike
  6. abstract def -?(node: N): This[N, E]

    Permalink

    Creates a new subgraph consisting of all nodes and edges of this graph but node which is conditionally removed from this graph.

    Creates a new subgraph consisting of all nodes and edges of this graph but node which is conditionally removed from this graph. The removal only succeeds if the node is not incident with any edges or it is only incident with hooks.

    node

    the node to be gently removed.

    returns

    the new subgraph of this graph after the "gentle" deletion of node. If node could not be deleted, the new graph is a copy of this graph.

    Definition Classes
    GraphLike
  7. abstract def componentTraverser(parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#ComponentTraverser

    Permalink

    Creates a ComponentTraverser responsible for invoking graph traversal methods that cover all components of this possibly disconnected graph.

    Creates a ComponentTraverser responsible for invoking graph traversal methods that cover all components of this possibly disconnected graph.

    parameters

    The properties controlling subsequent traversals.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  8. implicit abstract def config: generic.GraphCompanion.Config with (AdjacencyListBase.this)#Config

    Permalink
    Definition Classes
    GraphLike
  9. implicit abstract val edgeT: ClassTag[E[N]]

    Permalink
    Definition Classes
    GraphLike
  10. abstract def edges: (AdjacencyListBase.this)#EdgeSetT

    Permalink

    The edge set of this Graph commonly referred to as E(G).

    The edge set of this Graph commonly referred to as E(G).

    returns

    Set of all contained edges.

    Definition Classes
    GraphBase
  11. abstract def empty: This[N, E]

    Permalink
    Definition Classes
    SetLike
  12. abstract val graphCompanion: GraphCompanion[This]

    Permalink

    The companion object of This.

    The companion object of This.

    Definition Classes
    GraphLike
  13. abstract def innerEdgeTraverser(root: (AdjacencyListBase.this)#NodeT, parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#InnerEdgeTraverser

    Permalink

    Creates a InnerEdgeTraverser based on scala.collection.Traversable[EdgeT].

    Creates a InnerEdgeTraverser based on scala.collection.Traversable[EdgeT].

    root

    The node where subsequent graph traversals start.

    parameters

    The properties controlling subsequent traversals.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  14. abstract def innerElemTraverser(root: (AdjacencyListBase.this)#NodeT, parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#InnerElemTraverser

    Permalink

    Creates a InnerElemTraverser based on scala.collection.Traversable[InnerElem].

    Creates a InnerElemTraverser based on scala.collection.Traversable[InnerElem].

    root

    The node where subsequent graph traversals start.

    parameters

    The properties controlling subsequent traversals.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  15. abstract def innerNodeDownUpTraverser(root: (AdjacencyListBase.this)#NodeT, parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#InnerNodeDownUpTraverser

    Permalink

    Creates a InnerNodeDownUpTraverser based on scala.collection.Traversable[(Boolean, NodeT)] where the Boolean parameter is true if the traversal takes place in downward and false if it takes place in upward direction.

    Creates a InnerNodeDownUpTraverser based on scala.collection.Traversable[(Boolean, NodeT)] where the Boolean parameter is true if the traversal takes place in downward and false if it takes place in upward direction.

    root

    The node where subsequent graph traversals start.

    parameters

    The properties controlling subsequent traversals. A kind different from DepthFirst will be ignored.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  16. abstract def innerNodeTraverser(root: (AdjacencyListBase.this)#NodeT, parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#InnerNodeTraverser

    Permalink

    Creates a InnerNodeTraverser based on scala.collection.Traversable[NodeT].

    Creates a InnerNodeTraverser based on scala.collection.Traversable[NodeT].

    root

    The node where subsequent graph traversals start.

    parameters

    The properties controlling subsequent traversals.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  17. abstract def newEdge(innerEdge: E[(AdjacencyListBase.this)#NodeT]): (AdjacencyListBase.this)#EdgeT

    Permalink
    Attributes
    protected
    Definition Classes
    GraphBase
  18. abstract def newEdgeTArray(size: Int): Array[(AdjacencyListBase.this)#EdgeT]

    Permalink
    Attributes
    protected
  19. abstract def newNodeSet: (AdjacencyListBase.this)#NodeSetT

    Permalink
  20. abstract def newNodeWithHints(node: N, hints: Hints): (AdjacencyListBase.this)#NodeT

    Permalink
    Attributes
    protected
  21. abstract def newPathBuilder(start: (AdjacencyListBase.this)#NodeT)(implicit sizeHint: Int = defaultPathSize, edgeSelector: ((AdjacencyListBase.this)#NodeT, (AdjacencyListBase.this)#NodeT) ⇒ Option[(AdjacencyListBase.this)#EdgeT] = anyEdgeSelector): (AdjacencyListBase.this)#PathBuilder

    Permalink

    Instantiates a PathBuilder for this graph.

    Instantiates a PathBuilder for this graph.

    start

    The node this path starts at.

    sizeHint

    Expected maximum number of nodes on this path.

    edgeSelector

    Determines the edge to be selected between neighbor nodes if an edge is not supplied explicitly. This is only relevant in case of multigraphs.

    Definition Classes
    GraphTraversal
  22. abstract def newWalkBuilder(start: (AdjacencyListBase.this)#NodeT)(implicit sizeHint: Int = defaultPathSize, edgeSelector: ((AdjacencyListBase.this)#NodeT, (AdjacencyListBase.this)#NodeT) ⇒ Option[(AdjacencyListBase.this)#EdgeT] = anyEdgeSelector): (AdjacencyListBase.this)#WalkBuilder

    Permalink

    Instantiates a WalkBuilder for this graph.

    Instantiates a WalkBuilder for this graph.

    start

    The node this walk starts at.

    sizeHint

    Expected maximum number of nodes on this walk.

    edgeSelector

    Determines the edge to be selected between neighbor nodes if an edge is not supplied explicitly. This is only relevant in case of multigraphs.

    Definition Classes
    GraphTraversal
  23. abstract def nodes: (AdjacencyListBase.this)#NodeSetT

    Permalink

    The node (vertex) set of this Graph commonly referred to as V(G).

    The node (vertex) set of this Graph commonly referred to as V(G).

    returns

    Set of all contained nodes.

    Definition Classes
    GraphBase
  24. abstract def outerEdgeTraverser(root: (AdjacencyListBase.this)#NodeT, parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#OuterEdgeTraverser

    Permalink

    Creates a OuterEdgeTraverser based on scala.collection.Traversable[E[N]].

    Creates a OuterEdgeTraverser based on scala.collection.Traversable[E[N]].

    root

    The node where subsequent graph traversals start.

    parameters

    The properties controlling subsequent traversals.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  25. abstract def outerElemTraverser(root: (AdjacencyListBase.this)#NodeT, parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#OuterElemTraverser

    Permalink

    Creates a OuterElemTraverser based on scala.collection.Traversable[OuterElem].

    Creates a OuterElemTraverser based on scala.collection.Traversable[OuterElem].

    root

    The node where subsequent graph traversals start.

    parameters

    The properties controlling subsequent traversals.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  26. abstract def outerNodeDownUpTraverser(root: (AdjacencyListBase.this)#NodeT, parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#OuterNodeDownUpTraverser

    Permalink

    Creates a OuterNodeDownUpTraverser based on scala.collection.Traversable[(Boolean, N)] where the Boolean parameter is true if the traversal takes place in downward and false if it takes place in upward direction.

    Creates a OuterNodeDownUpTraverser based on scala.collection.Traversable[(Boolean, N)] where the Boolean parameter is true if the traversal takes place in downward and false if it takes place in upward direction.

    root

    The node where subsequent graph traversals start.

    parameters

    The properties controlling subsequent traversals. A kind different from DepthFirst will be ignored.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  27. abstract def outerNodeTraverser(root: (AdjacencyListBase.this)#NodeT, parameters: Parameters = Parameters(), subgraphNodes: (AdjacencyListBase.this)#NodeFilter = anyNode, subgraphEdges: (AdjacencyListBase.this)#EdgeFilter = anyEdge, ordering: (AdjacencyListBase.this)#ElemOrdering = NoOrdering): (AdjacencyListBase.this)#OuterNodeTraverser

    Permalink

    Creates a OuterNodeTraverser based on scala.collection.Traversable[N].

    Creates a OuterNodeTraverser based on scala.collection.Traversable[N].

    root

    The node where subsequent graph traversals start.

    parameters

    The properties controlling subsequent traversals.

    subgraphNodes

    Restricts subsequent graph traversals to visit only nodes holding this predicate.

    subgraphEdges

    Restricts subsequent graph traversals to walk only along edges that hold this predicate.

    ordering

    If a NodeOrdering or EdgeOrdering different from NoOrdering is supplied neighbor nodes will visited during the traversal according to this ordering.

    Definition Classes
    GraphTraversal
  28. abstract def seq: Set[Param[N, E]]

    Permalink
    Definition Classes
    GenSetLike → Parallelizable → GenTraversableOnce

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def &(that: GenSet[Param[N, E]]): This[N, E]

    Permalink
    Definition Classes
    GenSetLike
  4. def &~(that: GenSet[Param[N, E]]): This[N, E]

    Permalink
    Definition Classes
    GenSetLike
  5. def +(elem: Param[N, E]): This[N, E]

    Permalink

    Creates a new supergraph with an additional node or edge, unless the node or edge passed is already present.

    Creates a new supergraph with an additional node or edge, unless the node or edge passed is already present.

    This method purely wraps +(node: N) respectively +(edge: E[N]) granting the same behavior.

    elem

    the wrapped node or edge to be added; ; if elem is of type N, the wrapped object is added to the node set otherwise to the edge set.

    returns

    a new supergraph containing all nodes and edges of this graph plus elem.

    Definition Classes
    GraphLike → SetLike → GenSetLike
  6. def +(elem1: Param[N, E], elem2: Param[N, E], elems: Param[N, E]*): This[N, E]

    Permalink
    Definition Classes
    SetLike
  7. def ++(elems: GenTraversableOnce[Param[N, E]]): This[N, E]

    Permalink
    Definition Classes
    GraphLike → SetLike
  8. def ++[B >: Param[N, E], That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  9. def ++:[B >: Param[N, E], That](that: Traversable[B])(implicit bf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  10. def ++:[B >: Param[N, E], That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  11. def -(elem: Param[N, E]): This[N, E]

    Permalink

    Creates a new subgraph consisting of all nodes and edges of this graph except elem.

    Creates a new subgraph consisting of all nodes and edges of this graph except elem. If elem is of type N, this method maps to -(node: N). Otherwise the edge is deleted leaving the node set unchanged.

    elem

    node or edge to be removed.

    returns

    the new subgraph of this graph after the "ripple" deletion of the passed node or the simple deletion of the passed edge.

    Definition Classes
    GraphLike → SetLike → Subtractable → GenSetLike
  12. def -(elem1: Param[N, E], elem2: Param[N, E], elems: Param[N, E]*): This[N, E]

    Permalink
    Definition Classes
    Subtractable
  13. def -!(elem: Param[N, E]): This[N, E]

    Permalink

    Creates a new subgraph consisting of all nodes and edges of this graph except elem.

    Creates a new subgraph consisting of all nodes and edges of this graph except elem. If elem is of type N, this method maps to -(node: N). Otherwise the edge is deleted along with those incident nodes which would become edge-less after deletion.

    elem

    node or edge to be removed.

    returns

    a new subgraph of this graph after the "ripple" deletion of the passed node or edge.

    Definition Classes
    GraphLike
  14. def --(elems: GenTraversableOnce[Param[N, E]]): This[N, E]

    Permalink
    Definition Classes
    GraphLike → Subtractable
  15. def --!(elems: GenTraversableOnce[Param[N, E]]): This[N, E]

    Permalink

    Creates a new subgraph consisting of all nodes and edges of this graph but the elements of coll which will be unconditionally removed.

    Creates a new subgraph consisting of all nodes and edges of this graph but the elements of coll which will be unconditionally removed. This operation differs from -- in that edges are deleted along with those incident nodes which would become isolated after deletion.

    returns

    the new subgraph containing all nodes and edges of this graph after the "ripple" deletion of nodes and the simple deletion of edges in coll .

    Definition Classes
    GraphLike
  16. def ->[B](y: B): (AdjacencyListBase[N, E, This], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to ArrowAssoc[AdjacencyListBase[N, E, This]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  17. def /:[B](z: B)(op: (B, Param[N, E]) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  18. def :\[B](z: B)(op: (Param[N, E], B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  19. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  20. object Degree extends (GraphDegree.this)#DegreeFunction

    Permalink
    Definition Classes
    GraphDegree
  21. object DegreeOrdering extends Serializable

    Permalink
    Definition Classes
    GraphDegree
  22. object Edge extends Serializable

    Permalink
    Definition Classes
    GraphBase
  23. object EdgeOrdering extends Serializable

    Permalink

    Ordering for the path dependent type EdgeT.

    Ordering for the path dependent type EdgeT.

    Definition Classes
    GraphBase
  24. object EdgeT

    Permalink
    Definition Classes
    GraphBase
  25. object ExtendedNodeVisitor

    Permalink
    Definition Classes
    GraphTraversal
  26. object InDegree extends (GraphDegree.this)#DegreeFunction

    Permalink
    Definition Classes
    GraphDegree
  27. object InnerEdge extends Serializable

    Permalink
    Definition Classes
    GraphBase
  28. object InnerNode extends Serializable

    Permalink
    Definition Classes
    GraphBase
  29. object IntReverseOrdering extends Ordering[Int]

    Permalink

    Decreasing ordering of integers.

    Decreasing ordering of integers.

    Definition Classes
    GraphDegree
  30. object NoOrdering extends ElemOrdering with Serializable

    Permalink

    The empty ElemOrdering.

    The empty ElemOrdering.

    Definition Classes
    GraphBase
  31. object Node extends Serializable

    Permalink
    Definition Classes
    GraphBase
  32. object NodeOrdering extends Serializable

    Permalink
    Definition Classes
    GraphBase
  33. object OutDegree extends (GraphDegree.this)#DegreeFunction

    Permalink
    Definition Classes
    GraphDegree
  34. object Path extends Serializable

    Permalink
    Definition Classes
    GraphTraversal
  35. object SubgraphProperties

    Permalink
    Attributes
    protected
    Definition Classes
    GraphTraversal
  36. object TraverserInnerNode extends Serializable

    Permalink
    Definition Classes
    GraphTraversal
  37. object Walk

    Permalink
    Definition Classes
    GraphTraversal
  38. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  39. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  40. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  41. def aggregate[B](z: ⇒ B)(seqop: (B, Param[N, E]) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def andThen[A](g: (Boolean) ⇒ A): (Param[N, E]) ⇒ A

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  43. final val anyEdge: (AdjacencyListBase.this)#EdgeFilter

    Permalink

    Default edge filter letting path all edges (non-filter).

    Default edge filter letting path all edges (non-filter).

    Definition Classes
    GraphBase
  44. final def anyEdgeSelector(from: (AdjacencyListBase.this)#NodeT, to: (AdjacencyListBase.this)#NodeT): Option[(AdjacencyListBase.this)#EdgeT]

    Permalink

    An arbitrary edge between from and to that is available most efficiently.

    An arbitrary edge between from and to that is available most efficiently.

    Definition Classes
    GraphTraversal
    Annotations
    @inline()
  45. final val anyNode: (AdjacencyListBase.this)#NodeFilter

    Permalink

    Default node filter letting traverse all nodes (non-filter).

    Default node filter letting traverse all nodes (non-filter).

    Definition Classes
    GraphBase
  46. final lazy val anyOrdering: AnyOrdering[N]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphBase
  47. def apply(elem: Param[N, E]): Boolean

    Permalink
    Definition Classes
    GenSetLike → Function1
  48. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  49. def asSortedString(nodeSeparator: String = GraphBase.defaultSeparator, edgeSeparator: String = GraphBase.defaultSeparator, nodesEdgesSeparator: String = GraphBase.defaultSeparator, withNodesEdgesPrefix: Boolean = false)(implicit ordNode: (AdjacencyListBase.this)#NodeOrdering = defaultNodeOrdering, ordEdge: (AdjacencyListBase.this)#EdgeOrdering = defaultEdgeOrdering): String

    Permalink

    Sorts all nodes of this graph by ordNode followed by all edges sorted by ordEdge and concatinates their string representation nodeSeparator and edgeSeparator respectively.

    Sorts all nodes of this graph by ordNode followed by all edges sorted by ordEdge and concatinates their string representation nodeSeparator and edgeSeparator respectively.

    nodeSeparator

    to separate nodes by.

    edgeSeparator

    to separate edges by.

    nodesEdgesSeparator

    to separate nodes from edges by.

    withNodesEdgesPrefix

    whether the node and edge set should be prefixed.

    ordNode

    the node ordering defaulting to defaultNodeOrdering.

    ordEdge

    the edge ordering defaulting to defaultEdgeOrdering.

    Definition Classes
    GraphLike
  50. final def bulkOp(elems: GenTraversableOnce[Param[N, E]], isPlusPlus: Boolean): This[N, E]

    Permalink

    Prepares and calls plusPlus or minusMinus.

    Prepares and calls plusPlus or minusMinus.

    Attributes
    protected
    Definition Classes
    GraphLike
  51. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  52. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. def collect[B, That](pf: PartialFunction[Param[N, E], B])(implicit bf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  54. def collectFirst[B](pf: PartialFunction[Param[N, E], B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  55. def compose[A](g: (A) ⇒ Param[N, E]): (A) ⇒ Boolean

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  56. def contains(elem: Param[N, E]): Boolean

    Permalink

    Checks whether a given node or edge is contained in this graph.

    Checks whether a given node or edge is contained in this graph.

    elem

    the node or edge the existence of which is to be checked

    returns

    true if elem is contained in this graph

    Definition Classes
    GraphLike → SetLike → GenSetLike
  57. def copyToArray[B >: Param[N, E]](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  58. def copyToArray[B >: Param[N, E]](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def copyToArray[B >: Param[N, E]](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  60. def copyToBuffer[B >: Param[N, E]](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  61. def count(p: (Param[N, E]) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. final lazy val defaultEdgeOrdering: (AdjacencyListBase.this)#EdgeOrdering

    Permalink
    Definition Classes
    GraphBase
  63. final lazy val defaultNodeOrdering: (AdjacencyListBase.this)#NodeOrdering

    Permalink
    Definition Classes
    GraphBase
  64. final def defaultPathSize: Int

    Permalink
    Attributes
    protected
    Definition Classes
    GraphTraversal
    Annotations
    @inline()
  65. def degreeCount(implicit nodeDegree: (AdjacencyListBase.this)#DegreeFunction = Degree, degreeFilter: (Int) ⇒ Boolean = AnyDegree): SortedMap[Int, Int]

    Permalink

    The degree set of this graph projected onto a map.

    The degree set of this graph projected onto a map. The keys of the map are the degrees in decreasing order while the values are the number of inner nodes having the degree of the corresponding key.

    Definition Classes
    GraphDegree
  66. def degreeNodeSeq(implicit nodeDegree: (AdjacencyListBase.this)#DegreeFunction = Degree, degreeFilter: (Int) ⇒ Boolean = AnyDegree): Seq[(AdjacencyListBase.this)#DegreeNodeSeqEntry]

    Permalink

    The degree sequence of this graph projected onto a sequence of tuples.

    The degree sequence of this graph projected onto a sequence of tuples. The first elements of the tuples are the degrees in non-increasing order while the second elements are the corresponding inner nodes.

    Definition Classes
    GraphDegree
  67. def degreeNodesMap(implicit nodeDegree: (AdjacencyListBase.this)#DegreeFunction = Degree, degreeFilter: (Int) ⇒ Boolean = AnyDegree): SortedMap[Int, AnySet[(AdjacencyListBase.this)#NodeT]]

    Permalink

    The degree set of this graph projected onto a map.

    The degree set of this graph projected onto a map. The keys of the map are the degrees in decreasing order while the values are sets of the corresponding inner nodes.

    Definition Classes
    GraphDegree
  68. def degreeSeq(implicit nodeDegree: (AdjacencyListBase.this)#DegreeFunction = Degree, degreeFilter: (Int) ⇒ Boolean = AnyDegree): Seq[Int]

    Permalink

    The degree sequence of this graph, that is the non-increasing sequence of degrees over all nodes.

    The degree sequence of this graph, that is the non-increasing sequence of degrees over all nodes.

    Definition Classes
    GraphDegree
  69. def degreeSet(implicit nodeDegree: (AdjacencyListBase.this)#DegreeFunction = Degree, degreeFilter: (Int) ⇒ Boolean = AnyDegree): SortedSet[Int]

    Permalink

    The degree set of this graph, that is the decreasing set of unique degrees over all nodes.

    The degree set of this graph, that is the decreasing set of unique degrees over all nodes. Same as degreeSeq without duplicates.

    Definition Classes
    GraphDegree
  70. def diff(that: GenSet[Param[N, E]]): This[N, E]

    Permalink
    Definition Classes
    SetLike → GenSetLike
  71. def drop(n: Int): This[N, E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  72. def dropRight(n: Int): This[N, E]

    Permalink
    Definition Classes
    IterableLike
  73. def dropWhile(p: (Param[N, E]) ⇒ Boolean): This[N, E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  74. def edgeIterator: GroupIterator[(AdjacencyListBase.this)#EdgeT] { ... /* 2 definitions in type refinement */ }

    Permalink
  75. implicit final def edgeToEdgeCont(e: E[N]): E[(AdjacencyListBase.this)#NodeT]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphBase
    Annotations
    @inline()
  76. def ensuring(cond: (AdjacencyListBase[N, E, This]) ⇒ Boolean, msg: ⇒ Any): AdjacencyListBase[N, E, This]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to Ensuring[AdjacencyListBase[N, E, This]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  77. def ensuring(cond: (AdjacencyListBase[N, E, This]) ⇒ Boolean): AdjacencyListBase[N, E, This]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to Ensuring[AdjacencyListBase[N, E, This]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  78. def ensuring(cond: Boolean, msg: ⇒ Any): AdjacencyListBase[N, E, This]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to Ensuring[AdjacencyListBase[N, E, This]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  79. def ensuring(cond: Boolean): AdjacencyListBase[N, E, This]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to Ensuring[AdjacencyListBase[N, E, This]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  80. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  81. def equals(that: Any): Boolean

    Permalink

    Graph instances are equal if their nodes and edges turned to outer nodes and outer edges are equal.

    Graph instances are equal if their nodes and edges turned to outer nodes and outer edges are equal. Any TraversableOnce instance may also be equal to this graph if its set representation contains equalling outer nodes and outer edges. Thus the following expressions hold:

    Graph(1~2, 3) == List(1~2, 3)
    Graph(1~2, 3) == List(1, 2, 2, 3, 2~1)

    The first test is false because of the failing nodes 1 and 2. The second is true because of duplicate elimination and undirected edge equivalence.

    Definition Classes
    GraphLike → GenSetLike → Equals → AnyRef → Any
  82. def exists(p: (Param[N, E]) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  83. def filter(p: (Param[N, E]) ⇒ Boolean): This[N, E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  84. def filterNot(p: (Param[N, E]) ⇒ Boolean): This[N, E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  85. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  86. final def find(outerEdge: E[N]): Option[(AdjacencyListBase.this)#EdgeT]

    Permalink

    Searches for an edge node equaling to outerEdge in this graph.

    Searches for an edge node equaling to outerEdge in this graph.

    outerEdge

    the outer edge to search for in this graph.

    returns

    Some of the inner edge found or None.

    Definition Classes
    GraphLike
    Annotations
    @inline()
  87. final def find(outerNode: N): Option[(AdjacencyListBase.this)#NodeT]

    Permalink

    Searches for an inner node equaling to outerNode in this graph.

    Searches for an inner node equaling to outerNode in this graph.

    returns

    Some of the inner node found or None.

    Definition Classes
    GraphLike
    Annotations
    @inline()
  88. def find(p: (Param[N, E]) ⇒ Boolean): Option[Param[N, E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  89. final def findCycle[U](implicit visitor: ((AdjacencyListBase.this)#InnerElem) ⇒ U = empty): Option[(AdjacencyListBase.this)#Cycle]

    Permalink

    Finds a cycle in this graph in any of its components and calls visitor for each inner element visited during the search.

    Finds a cycle in this graph in any of its components and calls visitor for each inner element visited during the search. See componentTraverser for more control by means of FluentProperties.

    Definition Classes
    GraphTraversal
  90. def flatMap[B, That](f: (Param[N, E]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  91. def fold[A1 >: Param[N, E]](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def foldLeft[B](z: B)(op: (B, Param[N, E]) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def foldRight[B](z: B)(op: (Param[N, E], B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  94. def forall(p: (Param[N, E]) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  95. def foreach[U](f: (Param[N, E]) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  96. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to StringFormat[AdjacencyListBase[N, E, This]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  97. final def from(that: AdjacencyListBase[N, E, This])(delNodes: Iterable[NodeT] = Seq(), delEdges: Iterable[EdgeT] = Seq(), ripple: Boolean = false, addNodes: Iterable[N] = Seq(), addEdges: Iterable[E[N]] = Seq()): Unit

    Permalink
    Attributes
    protected
    Annotations
    @inline()
  98. final def get(outerEdge: E[N]): (AdjacencyListBase.this)#EdgeT

    Permalink

    Searches for an inner edge equaling to outerEdge in this graph which must exist in this graph.

    Searches for an inner edge equaling to outerEdge in this graph which must exist in this graph.

    outerEdge

    the outer edge to search for in this graph.

    returns

    the inner edge if found. Otherwise NoSuchElementException is thrown.

    Definition Classes
    GraphLike
    Annotations
    @inline()
  99. final def get(outerNode: N): (AdjacencyListBase.this)#NodeT

    Permalink

    Searches for an inner node equaling to outerNode in this graph which must exist in this graph.

    Searches for an inner node equaling to outerNode in this graph which must exist in this graph.

    outerNode

    the outer node to search for in this graph.

    returns

    the inner node if found. Otherwise NoSuchElementException is thrown.

    Definition Classes
    GraphLike
    Annotations
    @inline()
  100. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  101. final def getOrElse(outerEdge: E[N], default: (AdjacencyListBase.this)#EdgeT): (AdjacencyListBase.this)#EdgeT

    Permalink

    Searches for an inner edge equaling to outerEdge in this graph.

    Searches for an inner edge equaling to outerEdge in this graph.

    outerEdge

    the outer edge to search for in this graph.

    default

    the inner edge to return if outerEdge cannot be found.

    returns

    the inner edge looked up or default if no inner edge equaling to edge could be found.

    Definition Classes
    GraphLike
    Annotations
    @inline()
  102. final def getOrElse(outerNode: N, default: (AdjacencyListBase.this)#NodeT): (AdjacencyListBase.this)#NodeT

    Permalink

    Searches for an inner node equaling to outerNode in this graph.

    Searches for an inner node equaling to outerNode in this graph.

    outerNode

    the outer node to search for in this graph.

    default

    the inner node to return if outerNode is not contained.

    returns

    The inner node looked up or default if no inner node equaling to outerNode could be found.

    Definition Classes
    GraphLike
    Annotations
    @inline()
  103. def graphSize: Int

    Permalink

    The size - commonly referred to as ||G|| - of this graph equaling to the number of edges.

    The size - commonly referred to as ||G|| - of this graph equaling to the number of edges.

    Method size is reserved for the number of nodes and edges because Graph is also SetLike with set elements being nodes or edges.

    Definition Classes
    GraphBase
  104. def groupBy[K](f: (Param[N, E]) ⇒ K): Map[K, This[N, E]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  105. def grouped(size: Int): Iterator[This[N, E]]

    Permalink
    Definition Classes
    IterableLike
  106. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  107. def hashCode(): Int

    Permalink
    Definition Classes
    GenSetLike → AnyRef → Any
  108. def having(node: (AdjacencyListBase.this)#NodeFilter = _ => false, edge: (AdjacencyListBase.this)#EdgeFilter = null): PartialFunction[Param[N, E], Boolean]

    Permalink

    Provides a shortcut for predicates involving any graph element.

    Provides a shortcut for predicates involving any graph element. In order to compute a subgraph of this graph, the result of this method may be passed to any graph-level method requiring a predicate such as count, exists, filter, filterNot, forall etc. For instance

    val g = Graph(2~>3, 3~>1, 5)
    g filter g.having(nodes = _ >= 2) // yields Graph(2, 3, 5, 2~>3)
    node

    The predicate that must hold for the nodes.

    edge

    The predicate that must hold for the edges. If omitted, all edges between nodes to be included by nodes will also be included.

    returns

    A partial function combining the passed predicates.

    Definition Classes
    GraphLike
  109. def head: Param[N, E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  110. def headOption: Option[Param[N, E]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def init: This[N, E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  112. def initialize(nodes: Iterable[N], edges: Iterable[E[N]]): Unit

    Permalink

    Populates this graph with nodes and edges.

    Populates this graph with nodes and edges.

    The implementing class will typically have a constructor with the same parameters which is invoked by from of the companion object.

    nodes

    The isolated (and optionally any other) outer nodes that the node set of this graph is to be populated with.

    edges

    The outer edges that the edge set of this graph is to be populated with. Nodes being the end of any of these edges will be added to the node set.

    Attributes
    protected
    Definition Classes
    GraphBase
  113. def inits: Iterator[This[N, E]]

    Permalink
    Definition Classes
    TraversableLike
  114. def intersect(that: GenSet[Param[N, E]]): This[N, E]

    Permalink
    Definition Classes
    GenSetLike
  115. final def isAcyclic: Boolean

    Permalink

    Whether this graph has no cycle.

    Whether this graph has no cycle.

    Definition Classes
    GraphTraversal
    Annotations
    @inline()
  116. def isComplete: Boolean

    Permalink

    Whether all nodes are pairwise adjacent.

    Whether all nodes are pairwise adjacent.

    returns

    true if this graph is complete, false if this graph contains any independent nodes.

    Definition Classes
    GraphTraversal
  117. def isConnected: Boolean

    Permalink

    Whether this graph is connected if it is undirected or weakly connected if it is directed.

    Whether this graph is connected if it is undirected or weakly connected if it is directed.

    Definition Classes
    GraphTraversal
  118. final def isCustomEdgeFilter(f: (AdjacencyListBase.this)#EdgeFilter): Boolean

    Permalink

    true if f is not equivalent to anyEdge.

    true if f is not equivalent to anyEdge.

    Definition Classes
    GraphBase
    Annotations
    @inline()
  119. final def isCustomNodeFilter(f: (AdjacencyListBase.this)#NodeFilter): Boolean

    Permalink

    true if f is not equivalent to anyNode.

    true if f is not equivalent to anyNode.

    Definition Classes
    GraphBase
    Annotations
    @inline()
  120. final def isCyclic: Boolean

    Permalink

    Whether this graph has at least one cycle in any of its components.

    Whether this graph has at least one cycle in any of its components.

    Definition Classes
    GraphTraversal
    Annotations
    @inline()
  121. def isDefined: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  122. lazy val isDirected: Boolean

    Permalink
    Definition Classes
    GraphLikeGraphBase
  123. def isEdge: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  124. def isEmpty: Boolean

    Permalink
    Definition Classes
    SetLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  125. lazy val isHyper: Boolean

    Permalink
    Definition Classes
    GraphLikeGraphBase
  126. def isIn: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  127. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  128. lazy val isMulti: Boolean

    Permalink
    Definition Classes
    GraphLikeGraphBase
  129. def isNode: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  130. def isOut: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  131. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  132. final def isTrivial: Boolean

    Permalink

    true if this graph has at most 1 node.

    true if this graph has at most 1 node.

    Definition Classes
    GraphBase
    Annotations
    @inline()
  133. def iterator: Iterator[OutParam[N, E] with Serializable with (AdjacencyListBase.this)#InnerElem]

    Permalink

    Iterates over all nodes and all edges.

    Iterates over all nodes and all edges.

    returns

    iterator containing all nodes and all edges

    Definition Classes
    GraphLike → GenSetLike → IterableLike → GenIterableLike
  134. def last: Param[N, E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  135. def lastOption: Option[Param[N, E]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  136. def map[B, That](f: (Param[N, E]) ⇒ B)(implicit bf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    SetLike → TraversableLike → GenTraversableLike → FilterMonadic
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) Set.map now returns a Set, so it will discard duplicate values.

  137. def max[B >: Param[N, E]](implicit cmp: Ordering[B]): Param[N, E]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def maxBy[B](f: (Param[N, E]) ⇒ B)(implicit cmp: Ordering[B]): Param[N, E]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  139. def maxDegree(implicit nodeDegree: (AdjacencyListBase.this)#DegreeFunction = Degree, degreeFilter: (Int) ⇒ Boolean = AnyDegree): Int

    Permalink

    The degree of the node having the highest degree or 0 if this graph is empty.

    The degree of the node having the highest degree or 0 if this graph is empty.

    Definition Classes
    GraphDegree
  140. def min[B >: Param[N, E]](implicit cmp: Ordering[B]): Param[N, E]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  141. def minBy[B](f: (Param[N, E]) ⇒ B)(implicit cmp: Ordering[B]): Param[N, E]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  142. def minDegree(implicit nodeDegree: (AdjacencyListBase.this)#DegreeFunction = Degree, degreeFilter: (Int) ⇒ Boolean = AnyDegree): Int

    Permalink

    The degree of the node having the least degree or 0 if this graph is empty.

    The degree of the node having the least degree or 0 if this graph is empty.

    Definition Classes
    GraphDegree
  143. def minusMinus(delNodes: Iterable[N], delEdges: Iterable[E[N]]): This[N, E]

    Permalink

    Implements the heart of -- calling the from factory method of the companion object.

    Implements the heart of -- calling the from factory method of the companion object. Note that this method must be reimplemented in each module having its own factory methods such as constrained does.

    Attributes
    protected
    Definition Classes
    GraphLike
  144. def minusMinusNodesEdges(delNodes: Iterable[N], delEdges: Iterable[E[N]]): (Set[N], Set[E[N]])

    Permalink

    Calculates the nodes and edges arguments to be passed to a factory method when delNodes and delEdges are to be deleted by --.

    Calculates the nodes and edges arguments to be passed to a factory method when delNodes and delEdges are to be deleted by --.

    Attributes
    protected
    Definition Classes
    GraphLike
  145. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  146. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  147. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  148. val n1: AdjacencyListBase[N, E, This]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to EdgeAssoc[AdjacencyListBase[N, E, This]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  149. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  150. def newBuilder: Builder[Param[N, E], This[N, E]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    SetLike → TraversableLike → HasNewBuilder
  151. final def newNode(n: N): (AdjacencyListBase.this)#NodeT

    Permalink
    Attributes
    protected
    Definition Classes
    AdjacencyListBaseGraphBase
    Annotations
    @inline()
  152. final val noNode: (AdjacencyListBase.this)#NodeFilter

    Permalink

    Node predicate always returning false.

    Node predicate always returning false.

    Definition Classes
    GraphBase
  153. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  154. final def nonTrivial: Boolean

    Permalink

    true if this graph has at least 2 nodes.

    true if this graph has at least 2 nodes.

    Definition Classes
    GraphBase
    Annotations
    @inline()
  155. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  157. def order: Int

    Permalink

    The order - commonly referred to as |G| - of this graph equaling to the number of nodes.

    The order - commonly referred to as |G| - of this graph equaling to the number of nodes.

    Definition Classes
    GraphBase
  158. def par: ParSet[Param[N, E]]

    Permalink
    Definition Classes
    Parallelizable
  159. def parCombiner: Combiner[Param[N, E], ParSet[Param[N, E]]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    SetLike → TraversableLike → Parallelizable
  160. final def partition(elems: GenTraversableOnce[Param[N, E]]): Partitions[N, E]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphLike
  161. def partition(p: (Param[N, E]) ⇒ Boolean): (This[N, E], This[N, E])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  162. def plusPlus(newNodes: Iterable[N], newEdges: Iterable[E[N]]): This[N, E]

    Permalink

    Implements the heart of ++ calling the from factory method of the companion object.

    Implements the heart of ++ calling the from factory method of the companion object. Note that this method must be reimplemented in each module having its own factory methods such as constrained does.

    Attributes
    protected
    Definition Classes
    GraphLike
  163. def product[B >: Param[N, E]](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  164. def reduce[A1 >: Param[N, E]](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def reduceLeft[B >: Param[N, E]](op: (B, Param[N, E]) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  166. def reduceLeftOption[B >: Param[N, E]](op: (B, Param[N, E]) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  167. def reduceOption[A1 >: Param[N, E]](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  168. def reduceRight[B >: Param[N, E]](op: (Param[N, E], B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  169. def reduceRightOption[B >: Param[N, E]](op: (Param[N, E], B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  170. def repr: This[N, E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  171. def reversed: List[Param[N, E]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  172. def sameElements[B >: Param[N, E]](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  173. def scan[B >: Param[N, E], That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  174. def scanLeft[B, That](z: B)(op: (B, Param[N, E]) ⇒ B)(implicit bf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  175. def scanRight[B, That](z: B)(op: (Param[N, E], B) ⇒ B)(implicit bf: CanBuildFrom[This[N, E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  176. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  177. def slice(from: Int, until: Int): This[N, E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  178. def sliding(size: Int, step: Int): Iterator[This[N, E]]

    Permalink
    Definition Classes
    IterableLike
  179. def sliding(size: Int): Iterator[This[N, E]]

    Permalink
    Definition Classes
    IterableLike
  180. def span(p: (Param[N, E]) ⇒ Boolean): (This[N, E], This[N, E])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  181. def splitAt(n: Int): (This[N, E], This[N, E])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  182. def stringPrefix: String

    Permalink
    Definition Classes
    GraphLike → SetLike → TraversableLike → GenTraversableLike
  183. def subsetOf(that: GenSet[Param[N, E]]): Boolean

    Permalink
    Definition Classes
    GenSetLike
  184. def subsets(): Iterator[This[N, E]]

    Permalink
    Definition Classes
    SetLike
  185. def subsets(len: Int): Iterator[This[N, E]]

    Permalink
    Definition Classes
    SetLike
  186. def sum[B >: Param[N, E]](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  187. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  188. def tail: This[N, E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  189. def tails: Iterator[This[N, E]]

    Permalink
    Definition Classes
    TraversableLike
  190. def take(n: Int): This[N, E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  191. def takeRight(n: Int): This[N, E]

    Permalink
    Definition Classes
    IterableLike
  192. def takeWhile(p: (Param[N, E]) ⇒ Boolean): This[N, E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  193. def thisCollection: Iterable[Param[N, E]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  194. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Param[N, E], Col[Param[N, E]]]): Col[Param[N, E]]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  195. def toArray[B >: Param[N, E]](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  196. def toBuffer[A1 >: Param[N, E]]: Buffer[A1]

    Permalink
    Definition Classes
    SetLike → TraversableOnce → GenTraversableOnce
  197. def toCollection(repr: This[N, E]): Iterable[Param[N, E]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  198. def toIndexedSeq: IndexedSeq[Param[N, E]]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  199. def toIterable: Iterable[Param[N, E]]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  200. def toIterator: Iterator[Param[N, E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  201. def toList: List[Param[N, E]]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  202. def toMap[T, U](implicit ev: <:<[Param[N, E], (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  203. def toParArray: ParArray[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to CollectionsHaveToParArray[AdjacencyListBase[N, E, This], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (AdjacencyListBase[N, E, This]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  204. def toSeq: Seq[Param[N, E]]

    Permalink
    Definition Classes
    SetLike → TraversableOnce → GenTraversableOnce
  205. def toSet[B >: Param[N, E]]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  206. def toSortedString(nodeSeparator: String = GraphBase.defaultSeparator, edgeSeparator: String = GraphBase.defaultSeparator, nodesEdgesSeparator: String = GraphBase.defaultSeparator, withNodesEdgesPrefix: Boolean = false)(implicit ordNode: (AdjacencyListBase.this)#NodeOrdering = defaultNodeOrdering, ordEdge: (AdjacencyListBase.this)#EdgeOrdering = defaultEdgeOrdering): String

    Permalink

    Same as asSortedString but additionally prefixed and parenthesized by stringPrefix.

    Same as asSortedString but additionally prefixed and parenthesized by stringPrefix.

    Definition Classes
    GraphLike
  207. def toStream: Stream[Param[N, E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  208. def toString(): String

    Permalink

    Ensures sorted nodes/edges unless this Graph has more than 100 elements.

    Ensures sorted nodes/edges unless this Graph has more than 100 elements. See also asSortedString and toSortedString.

    Definition Classes
    GraphLike → SetLike → Function1 → TraversableLike → AnyRef → Any
  209. def toTraversable: Traversable[Param[N, E]]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  210. def toVector: Vector[Param[N, E]]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  211. final def topologicalSort[U](implicit visitor: ((AdjacencyListBase.this)#InnerElem) ⇒ U = empty): (AdjacencyListBase.this)#CycleNodeOrTopologicalOrder

    Permalink

    Sorts this graph topologically.

    Sorts this graph topologically.

    visitor

    called for each inner node or inner edge visited during the sort. See componentTraverser for more control by means of FluentProperties.

    Definition Classes
    GraphTraversal
  212. final def topologicalSortByComponent[U](implicit visitor: ((AdjacencyListBase.this)#InnerElem) ⇒ U = empty): Traversable[(AdjacencyListBase.this)#CycleNodeOrTopologicalOrder]

    Permalink

    Sorts every isolated component of this graph topologically.

    Sorts every isolated component of this graph topologically.

    visitor

    called for each inner node or inner edge visited during the sort. See componentTraverser for more control by means of FluentProperties.

    Definition Classes
    GraphTraversal
  213. def totalDegree(implicit nodeDegree: (AdjacencyListBase.this)#DegreeFunction = Degree, degreeFilter: (Int) ⇒ Boolean = AnyDegree): Int

    Permalink

    The total degree of this graph equaling to the sum of the degrees over all nodes or 0 if this graph is empty.

    The total degree of this graph equaling to the sum of the degrees over all nodes or 0 if this graph is empty.

    nodeDegree

    the degree function to apply to the nodes defaulting to Degree. Non-default predefined degree functions are InDegree and OutDegree.

    degreeFilter

    selects nodes to be included by their degree.

    Definition Classes
    GraphDegree
  214. def totalWeight: Long

    Permalink
    Definition Classes
    GraphBase
  215. def union(that: GenSet[Param[N, E]]): This[N, E]

    Permalink
    Definition Classes
    SetLike → GenSetLike
  216. val value: AdjacencyListBase[N, E, This]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  217. def view(from: Int, until: Int): IterableView[Param[N, E], This[N, E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  218. def view: IterableView[Param[N, E], This[N, E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  219. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  222. def withFilter(p: (Param[N, E]) ⇒ Boolean): FilterMonadic[Param[N, E], This[N, E]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  223. def zip[A1 >: Param[N, E], B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[This[N, E], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  224. def zipAll[B, A1 >: Param[N, E], That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[This[N, E], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  225. def zipWithIndex[A1 >: Param[N, E], That](implicit bf: CanBuildFrom[This[N, E], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  226. def |(that: GenSet[Param[N, E]]): This[N, E]

    Permalink
    Definition Classes
    GenSetLike
  227. def ~[N >: N1](n2: N): UnDiEdge[N]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to EdgeAssoc[AdjacencyListBase[N, E, This]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  228. def ~>[N >: N1](n2: N): DiEdge[N]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to EdgeAssoc[AdjacencyListBase[N, E, This]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  229. def [B](y: B): (AdjacencyListBase[N, E, This], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to ArrowAssoc[AdjacencyListBase[N, E, This]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to any2stringadd[AdjacencyListBase[N, E, This]] 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:
    (adjacencyListBase: any2stringadd[AdjacencyListBase[N, E, This]]).+(other)
    Definition Classes
    any2stringadd
  2. def andThen[A](g: (Boolean) ⇒ A): (Param[Param[N, E], EI]) ⇒ A

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] 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:
    (adjacencyListBase: (Param[Param[N, E], EI]) ⇒ Boolean).andThen(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  3. def apply(v1: Param[Param[N, E], EI]): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] 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:
    (adjacencyListBase: (Param[Param[N, E], EI]) ⇒ Boolean).apply(v1)
    Definition Classes
    Function1
  4. def compose[A](g: (A) ⇒ Param[Param[N, E], EI]): (A) ⇒ Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] 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:
    (adjacencyListBase: (Param[Param[N, E], EI]) ⇒ Boolean).compose(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  5. def filter(p: (Param[N, E]) ⇒ Boolean): TraversableOnce[Param[N, E]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to MonadOps[Param[N, E]] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (adjacencyListBase: MonadOps[Param[N, E]]).filter(p)
    Definition Classes
    MonadOps
  6. def flatMap[B](f: (Param[N, E]) ⇒ GenTraversableOnce[B]): TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to MonadOps[Param[N, E]] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (adjacencyListBase: MonadOps[Param[N, E]]).flatMap(f)
    Definition Classes
    MonadOps
  7. def map[B](f: (Param[N, E]) ⇒ B): TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to MonadOps[Param[N, E]] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (adjacencyListBase: MonadOps[Param[N, E]]).map(f)
    Definition Classes
    MonadOps
  8. def stringPrefix: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]] 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:
    (adjacencyListBase: OuterNode[AdjacencyListBase[N, E, This]]).stringPrefix
    Definition Classes
    NodeParam
  9. def toString(): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]] 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:
    (adjacencyListBase: OuterNode[AdjacencyListBase[N, E, This]]).toString()
    Definition Classes
    NodeParam → AnyRef → Any
  10. def toString(): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] 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:
    (adjacencyListBase: (Param[Param[N, E], EI]) ⇒ Boolean).toString()
    Definition Classes
    Function1 → AnyRef → Any
  11. def withFilter(p: (Param[N, E]) ⇒ Boolean): Iterator[Param[N, E]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AdjacencyListBase[N, E, This] to MonadOps[Param[N, E]] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (adjacencyListBase: MonadOps[Param[N, E]]).withFilter(p)
    Definition Classes
    MonadOps

Inherited from GraphLike[N, E, This]

Inherited from GraphDegree[N, E]

Inherited from GraphTraversal[N, E]

Inherited from GraphBase[N, E]

Inherited from Serializable

Inherited from Serializable

Inherited from SetLike[Param[N, E], This[N, E]]

Inherited from Subtractable[Param[N, E], This[N, E]]

Inherited from GenSetLike[Param[N, E], This[N, E]]

Inherited from (Param[N, E]) ⇒ Boolean

Inherited from IterableLike[Param[N, E], This[N, E]]

Inherited from GenIterableLike[Param[N, E], This[N, E]]

Inherited from TraversableLike[Param[N, E], This[N, E]]

Inherited from GenTraversableLike[Param[N, E], This[N, E]]

Inherited from Parallelizable[Param[N, E], ParSet[Param[N, E]]]

Inherited from TraversableOnce[Param[N, E]]

Inherited from GenTraversableOnce[Param[N, E]]

Inherited from FilterMonadic[Param[N, E], This[N, E]]

Inherited from HasNewBuilder[Param[N, E], This[N, E]]

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion anyToNode from AdjacencyListBase[N, E, This] to OuterNode[AdjacencyListBase[N, E, This]]

Inherited by implicit conversion CollectionsHaveToParArray from AdjacencyListBase[N, E, This] to CollectionsHaveToParArray[AdjacencyListBase[N, E, This], T]

Inherited by implicit conversion MonadOps from AdjacencyListBase[N, E, This] to MonadOps[Param[N, E]]

Inherited by implicit conversion EdgeAssoc from AdjacencyListBase[N, E, This] to EdgeAssoc[AdjacencyListBase[N, E, This]]

Inherited by implicit conversion predicateToNodePredicate from AdjacencyListBase[N, E, This] to (Param[Param[N, E], EI]) ⇒ Boolean

Inherited by implicit conversion any2stringadd from AdjacencyListBase[N, E, This] to any2stringadd[AdjacencyListBase[N, E, This]]

Inherited by implicit conversion StringFormat from AdjacencyListBase[N, E, This] to StringFormat[AdjacencyListBase[N, E, This]]

Inherited by implicit conversion Ensuring from AdjacencyListBase[N, E, This] to Ensuring[AdjacencyListBase[N, E, This]]

Inherited by implicit conversion ArrowAssoc from AdjacencyListBase[N, E, This] to ArrowAssoc[AdjacencyListBase[N, E, This]]

Inherited by implicit conversion alternateImplicit from AdjacencyListBase[N, E, This] to ForceImplicitAmbiguity

Ungrouped