- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for expectedEdgeCount (0.15 sec)
-
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)