Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

     *   checkArgument(value >= 0, "input is negative: %s", value);
     *   // calculate square root
     * }
     * }
     *
     * <p>so that a hypothetical bad caller of this method, such as:
     *
     * {@snippet :
     * void exampleBadCaller() {
     *   double d = sqrt(-1.0);
     * }
     * }
     *
     * <p>would be flagged as having called {@code sqrt()} with an illegal argument.
     *
     * <h3>Performance</h3>
     *
    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