Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NodeConnection (0.2 sec)

  1. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

            } else {
              Iterator<NodeConnection<N>> nodeConnections = orderedNodeConnections.iterator();
              return new AbstractIterator<N>() {
                @Override
                @CheckForNull
                protected N computeNext() {
                  while (nodeConnections.hasNext()) {
                    NodeConnection<N> nodeConnection = nodeConnections.next();
                    if (nodeConnection instanceof NodeConnection.Pred) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 18K bytes
    - Viewed (0)
Back to top