- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for incidentEdgeIterator (0.16 sec)
-
guava/src/com/google/common/graph/StandardValueGraph.java
IncidentEdgeSet<N> incident = new IncidentEdgeSet<N>(this, node) { @Override public Iterator<EndpointPair<N>> iterator() { return connections.incidentEdgeIterator(node); } }; return nodeInvalidatableSet(incident, node); } @Override public boolean hasEdgeConnecting(N nodeU, N nodeV) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 17:29:38 UTC 2024 - 6.1K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/DirectedGraphConnections.java
@Override public boolean contains(@CheckForNull Object obj) { return isSuccessor(adjacentNodeValues.get(obj)); } }; } @Override public Iterator<EndpointPair<N>> incidentEdgeIterator(N thisNode) { checkNotNull(thisNode); Iterator<EndpointPair<N>> resultWithDoubleSelfLoop; if (orderedNodeConnections == null) { resultWithDoubleSelfLoop = Iterators.concat(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 20 17:00:05 UTC 2024 - 18K bytes - Viewed (0)