Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for expectedEdgeCount (0.15 sec)

  1. guava/src/com/google/common/graph/NetworkBuilder.java

      /**
       * Specifies the expected number of edges in the network.
       *
       * @throws IllegalArgumentException if {@code expectedEdgeCount} is negative
       */
      @CanIgnoreReturnValue
      public NetworkBuilder<N, E> expectedEdgeCount(int expectedEdgeCount) {
        this.expectedEdgeCount = Optional.of(checkNonNegative(expectedEdgeCount));
        return this;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 7.4K bytes
    - Viewed (0)
Back to top