OuterNodeTraverser
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.Iterable on this instance.
Attributes
- Graph
-
- Supertypes
-
trait ForeachBasedDetachingIterable[N]trait Iterable[N]trait IterableOnce[N]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
class OuterNodeTraverserImpl
Members list
Value members
Inherited methods
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- TraverserMethods (hidden)
Attributes
- Inherited from:
- Traverser
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- TraverserMethods (hidden)
Attributes
- Definition Classes
- Inherited from:
- IterableFactoryDefaults
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Finds a node connected with root
by any number of edges with any direction for which the predicate pred
holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. For directed or mixed graphs the node to be found is weakly connected with this node. root
itself does not count as a match. This is also true if it has a hook. If several connected nodes exist with pred
the algorithm selects any one of these.
Finds a node connected with root
by any number of edges with any direction for which the predicate pred
holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. For directed or mixed graphs the node to be found is weakly connected with this node. root
itself does not count as a match. This is also true if it has a hook. If several connected nodes exist with pred
the algorithm selects any one of these.
Value parameters
- pred
-
The predicate which must hold true for the resulting node.
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
A node with the predicate
pred
orNone
if either a. there is no node withpred
or a. there exists no connection to such a node or a. there exists a connection to such a node but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Finds a cycle starting the search at root
taking optional properties like subgraph restriction, ordering or maximum depth into account., if any. The resulting cycle may start at any node connected with this
node.
Finds a cycle starting the search at root
taking optional properties like subgraph restriction, ordering or maximum depth into account., if any. The resulting cycle may start at any node connected with this
node.
Value parameters
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
A cycle or
None
if either a. there exists no cycle in the component depicting byroot
or a. there exists a cycle in the component but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Finds a predecessor of root
for which the predicate pred
holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. root
itself does not count as a match. This is also true if it has a hook. If several predecessors exist the algorithm selects the first of them found.
Finds a predecessor of root
for which the predicate pred
holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. root
itself does not count as a match. This is also true if it has a hook. If several predecessors exist the algorithm selects the first of them found.
Value parameters
- pred
-
The predicate which must hold true for the resulting node.
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
A node with the predicate
pred
orNone
if either a. there is no node withpred
or a. there exists no path from such a node to this node or a. there exists a path from such a node toroot
but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Finds a successor of root
for which the predicate pred
holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. root
itself does not count as a match. This is also true if it has a hook. If several successors holding pred
exist any one of them may be returned.
Finds a successor of root
for which the predicate pred
holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. root
itself does not count as a match. This is also true if it has a hook. If several successors holding pred
exist any one of them may be returned.
Value parameters
- pred
-
The predicate which must hold for the resulting node.
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
A node with the predicate
pred
orNone
if either a. there is no node withpred
or a. there exists no path to such a node or a. there exists a path to such a node but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableFactoryDefaults
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Checks whether potentialPredecessor
is a predecessor of root
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. Same as isSuccessorOf
.
Checks whether potentialPredecessor
is a predecessor of root
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. Same as isSuccessorOf
.
Value parameters
- potentialPredecessor
-
The node which is potentially a predecessor of
root
. - visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
true
if a path exists frompotentialPredecessor
toroot
and it had not to be excluded due tosubgraph
properties. - Inherited from:
- TraverserMethods (hidden)
Checks whether potentialSuccessor
is a successor of this node considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. Same as isPredecessorOf
.
Checks whether potentialSuccessor
is a successor of this node considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. Same as isPredecessorOf
.
Value parameters
- potentialSuccessor
-
The node which is potentially a successor of this node.
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
true
if a path exists from this node topotentialSuccessor
and it had not to be excluded due to asubgraph*
restriction. - Inherited from:
- TraverserMethods (hidden)
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Checks whether potentialConnected
is a node (not necessarily directly) connected with root
by any number of edges with any direction considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. For directed or mixed graphs it is satisfactory that potentialConnected
is weakly connected with root
.
Checks whether potentialConnected
is a node (not necessarily directly) connected with root
by any number of edges with any direction considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. For directed or mixed graphs it is satisfactory that potentialConnected
is weakly connected with root
.
Value parameters
- potentialConnected
-
The node which is potentially connected with
root
. - visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
true
if a path exists from this node topotentialConnected
and it had not to be excluded due tosubgraph
properties. - Inherited from:
- TraverserMethods (hidden)
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Same as hasSuccessor
.
Same as hasSuccessor
.
Attributes
- Inherited from:
- TraverserMethods (hidden)
Same as hasPredecessor
.
Same as hasPredecessor
.
Attributes
- Inherited from:
- TraverserMethods (hidden)
Attributes
- Definition Classes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOnce
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
An optional maximum weight that limits the scope of the traversal or search. If defined and the sum of edge weights between the root of the traversal and a node exceeds the given maximum, that node will no more be visited.
An optional maximum weight that limits the scope of the traversal or search. If defined and the sum of edge weights between the root of the traversal and a node exceeds the given maximum, that node will no more be visited.
Attributes
- Inherited from:
- Properties (hidden)
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableFactoryDefaults
Attributes
- Inherited from:
- FluentProperties (hidden)
Attributes
- Inherited from:
- TraverserMethods (hidden)
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- Traverser
If a NodeOrdering
or EdgeOrdering
different from NoOrdering
is supplied neighbor nodes will visited during the traversal according to this ordering.
If a NodeOrdering
or EdgeOrdering
different from NoOrdering
is supplied neighbor nodes will visited during the traversal according to this ordering.
Attributes
- Inherited from:
- Properties (hidden)
The properties controlling subsequent traversals.
The properties controlling subsequent traversals.
Attributes
- Inherited from:
- Properties (hidden)
Finds a cycle that contains root
taking optional properties like subgraph restriction, ordering or maximum depth into account.. Irrespective of the current setting for kind
, DepthFirst
is used internally.
Finds a cycle that contains root
taking optional properties like subgraph restriction, ordering or maximum depth into account.. Irrespective of the current setting for kind
, DepthFirst
is used internally.
Value parameters
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
A cycle containing
root
orNone
if either a. there exists no cycle containingroot
or a. there exists such a cycle but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Finds a path from root
to potentialSuccessor
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method.
Finds a path from root
to potentialSuccessor
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method.
Value parameters
- potentialSuccessor
-
The node a path is to be found to.
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
A path to
potentialSuccessor
orNone
if either a. there is no node withpred
or a. there exists no path to such a node - Inherited from:
- TraverserMethods (hidden)
Finds a path from root
to a successor of root
for which pred
holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. root
itself does not count as a match. This is also true if it has a hook. If several successors exist the algorithm selects any one of these.
Finds a path from root
to a successor of root
for which pred
holds considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. root
itself does not count as a match. This is also true if it has a hook. If several successors exist the algorithm selects any one of these.
Value parameters
- pred
-
The predicate which must hold true for the successor.
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
A path to a node with the predicate
pred
orNone
if either a. there is no node withpred
or a. there exists no path to such a node or a. there exists a path to such a node but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- TraverserMethods (hidden)
Attributes
- Inherited from:
- IterableOnceOps
The node where subsequent graph traversals start.
The node where subsequent graph traversals start.
Attributes
- Inherited from:
- Properties (hidden)
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Finds the shortest path from root
to potentialSuccessor
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L
that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo
.
Finds the shortest path from root
to potentialSuccessor
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L
that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo
.
Value parameters
- potentialSuccessor
-
The node the shortest path is to be found to.
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
- weight
-
Function to determine the weight of edges. If supplied, this function takes precedence over edge weights.
Attributes
- Returns
-
The shortest path to
potentialSuccessor
orNone
if either a. there exists no path topotentialSuccessor
or a. there exists a path topotentialSuccessor
but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Finds the shortest path from root
to potentialSuccessor
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L
that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo
.
Finds the shortest path from root
to potentialSuccessor
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L
that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo
.
Value parameters
- potentialSuccessor
-
The node the shortest path is to be found to.
- weight
-
Function to determine the weight of edges. If supplied, this function takes precedence over edge weights.
Attributes
- Returns
-
The shortest path to
potentialSuccessor
orNone
if either a. there exists no path topotentialSuccessor
or a. there exists a path topotentialSuccessor
but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Finds the shortest path from root
to potentialSuccessor
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L
that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo
.
Finds the shortest path from root
to potentialSuccessor
considering all traversal properties passed to the traverser factory method like scalax.collection.GraphTraversal#innerNodeTraverser or altered by any with*
method. The calculation is based on the weight of the edges on the path. Edges have a default weight of 1L
that can be overridden by custom edges. A weight function yielding any numeric type may also be passed to shortestPathTo
.
Value parameters
- potentialSuccessor
-
The node the shortest path is to be found to.
- visitor
-
An optional function that is applied for its side-effect to every element visited during graph traversal.
Attributes
- Returns
-
The shortest path to
potentialSuccessor
orNone
if either a. there exists no path topotentialSuccessor
or a. there exists a path topotentialSuccessor
but due to withSubgraph settings this path was out of scope. - Inherited from:
- TraverserMethods (hidden)
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOnce
Finds all strongly connected components reachable from this node. See componentTraverser
for more control by means of FluentProperties
.
Finds all strongly connected components reachable from this node. See componentTraverser
for more control by means of FluentProperties
.
Value parameters
- visitor
-
Function to be called for each inner node or inner edge visited during the search.
Attributes
- Inherited from:
- TraverserMethods (hidden)
Restricts subsequent graph traversals to walk only along edges that hold this predicate.
Restricts subsequent graph traversals to walk only along edges that hold this predicate.
Attributes
- Inherited from:
- SubgraphProperties (hidden)
Restricts subsequent graph traversals to visit only nodes holding this predicate.
Restricts subsequent graph traversals to visit only nodes holding this predicate.
Attributes
- Inherited from:
- SubgraphProperties (hidden)
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Definition Classes
- Inherited from:
- IterableOps
Completes a traversal and creates a new connected graph populated with the elements visited.
Completes a traversal and creates a new connected graph populated with the elements visited.
Attributes
- Inherited from:
- Traverser
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- FluentProperties (hidden)
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Attributes
- Inherited from:
- IterableOnceOps
Sorts the component designated by this node topologically. Only nodes connected with this node will be included in the resulting topological order. If the graph is known to be connected choose GraphTraversal#topologicalSort instead. See componentTraverser
for more control by means of FluentProperties
.
Sorts the component designated by this node topologically. Only nodes connected with this node will be included in the resulting topological order. If the graph is known to be connected choose GraphTraversal#topologicalSort instead. See componentTraverser
for more control by means of FluentProperties
.
Value parameters
- ignorePredecessors
-
If
true
, the topological sort will be partial in that it will only include successors ofroot
.withSubgraph
restricts the successor nodes to be included but not predecessors that will be excluded in total. - visitor
-
Function to be called for each inner node or inner edge visited during the sort.
Attributes
- Inherited from:
- TraverserMethods (hidden)
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Determines the weak component that contains this node. See componentTraverser
for more control by means of FluentProperties
.
Determines the weak component that contains this node. See componentTraverser
for more control by means of FluentProperties
.
Value parameters
- visitor
-
Function to be called for each inner node or inner edge visited during the search.
Attributes
- Inherited from:
- TraverserMethods (hidden)
Creates a new FluentProperties based on this
except for an updated direction
. Note that methods returning a Cycle or Path accept only Successors
.
Creates a new FluentProperties based on this
except for an updated direction
. Note that methods returning a Cycle or Path accept only Successors
.
Attributes
- Inherited from:
- FluentProperties (hidden)
Attributes
- Inherited from:
- IterableOps
Creates a new FluentProperties based on this
except for an updated kind
.
Creates a new FluentProperties based on this
except for an updated kind
.
Attributes
- Inherited from:
- FluentProperties (hidden)
Creates a new FluentProperties based on this
except for an updated maxDepth
.
Creates a new FluentProperties based on this
except for an updated maxDepth
.
Attributes
- Inherited from:
- FluentProperties (hidden)
Creates a new FluentProperties based on this
except for an updated maxWeight
having the given max
and the default weight function returning edge.weight
.
Creates a new FluentProperties based on this
except for an updated maxWeight
having the given max
and the default weight function returning edge.weight
.
Attributes
- Inherited from:
- FluentProperties (hidden)
Creates a new FluentProperties based on this
except for an updated maxWeight
having the given max
value and the given weight function.
Creates a new FluentProperties based on this
except for an updated maxWeight
having the given max
value and the given weight function.
Attributes
- Inherited from:
- FluentProperties (hidden)
Creates a new FluentProperties based on this
except for an updated maxWeight
.
Creates a new FluentProperties based on this
except for an updated maxWeight
.
Attributes
- Inherited from:
- FluentProperties (hidden)
Creates a new FluentProperties based on this
except for an updated ordering
.
Creates a new FluentProperties based on this
except for an updated ordering
.
Attributes
- Inherited from:
- FluentProperties (hidden)
Creates a new FluentProperties based on this
except for an updated parameters
.
Creates a new FluentProperties based on this
except for an updated parameters
.
Attributes
- Inherited from:
- FluentProperties (hidden)
Creates a new FluentProperties based on this
except for an updated root
.
Creates a new FluentProperties based on this
except for an updated root
.
Attributes
- Inherited from:
- TraverserMethods (hidden)
Creates a new FluentProperties based on this
except for an updated subgraphNodes
and/or subgraphEdges
.
Creates a new FluentProperties based on this
except for an updated subgraphNodes
and/or subgraphEdges
.
Attributes
- Inherited from:
- FluentProperties (hidden)
Attributes
- Inherited from:
- IterableOps
Attributes
- Inherited from:
- IterableOps
Attributes
- Definition Classes
- Inherited from:
- ForeachBasedDetachingIterable
Deprecated and Inherited methods
Attributes
- Deprecated
-
[Since version 2.13.0]
Use ++ instead of ++: for collections of type Iterable - Inherited from:
- IterableOps
Attributes
- Deprecated
-
[Since version 2.13.0]
Use foldLeft instead of /: - Inherited from:
- IterableOnceOps
Attributes
- Deprecated
-
[Since version 2.13.0]
Use foldRight instead of :\\ - Inherited from:
- IterableOnceOps
Attributes
- Deprecated
-
[Since version 2.13.0]
`aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead. - Inherited from:
- IterableOnceOps
Attributes
- Deprecated
-
[Since version 2.13.0]
Use iterableFactory instead - Inherited from:
- IterableOps
Attributes
- Deprecated
-
[Since version 2.13.0]
Use `dest ++= coll` instead - Inherited from:
- IterableOnceOps
Attributes
- Deprecated
-
[Since version 2.13.0]
Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details) - Inherited from:
- IterableOnceOps
Attributes
- Deprecated
-
[Since version 2.13.0]
Use coll instead of repr in a collection implementation, use the collection value itself from the outside - Inherited from:
- IterableOps
Attributes
- Deprecated
-
[Since version 2.13.0]
Iterable.seq always returns the iterable itself - Inherited from:
- Iterable
Attributes
- Deprecated
-
[Since version 2.13.7]
toIterable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections - Inherited from:
- Iterable
Attributes
- Deprecated
-
[Since version 2.13.0]
Use .iterator instead of .toIterator - Inherited from:
- IterableOnceOps
Attributes
- Deprecated
-
[Since version 2.13.0]
Use .to(LazyList) instead of .toStream - Inherited from:
- IterableOnceOps
Attributes
- Deprecated
-
[Since version 2.13.0]
toTraversable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections - Inherited from:
- IterableOps