Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for incidentEdgeIterator (1.15 sec)

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

          @Override
          public boolean contains(@Nullable 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
Back to top