Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for InvalidatableSet (0.41 seconds)

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

       * not present in this network.
       *
       * @since 33.1.0
       */
      protected final <T> Set<T> edgeInvalidatableSet(Set<T> set, E edge) {
        return InvalidatableSet.of(
            set, () -> edges().contains(edge), () -> String.format(EDGE_REMOVED_FROM_GRAPH, edge));
      }
    
      /**
       * Returns a {@link Set} whose methods throw {@link IllegalStateException} when the given node is
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 10K bytes
    - Click Count (0)
Back to Top