Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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(
    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