Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkPositionIndexes (0.06 sec)

  1. android/guava/src/com/google/common/base/Preconditions.java

       *     or if {@code end} is less than {@code start}
       * @throws IllegalArgumentException if {@code size} is negative
       */
      public static void checkPositionIndexes(int start, int end, int size) {
        // Carefully optimized for execution by hotspot (explanatory comment above)
        if (start < 0 || end < start || end > size) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 10 22:11:00 UTC 2025
    - 53K bytes
    - Viewed (0)
Back to top