Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removeSuccessor (0.1 sec)

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

            orderedNodeConnections.remove(new NodeConnection.Pred<>(node));
          }
        }
      }
    
      @SuppressWarnings("unchecked")
      @Override
      @CheckForNull
      public V removeSuccessor(Object node) {
        checkNotNull(node);
        Object previousValue = adjacentNodeValues.get(node);
        Object removedValue;
    
        if (previousValue == null || previousValue == PRED) {
          removedValue = null;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top