Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for doubleValue (0.15 sec)

  1. android/guava/src/com/google/common/primitives/Doubles.java

        reverse(array, fromIndex, toIndex);
      }
    
      /**
       * Returns an array containing each value of {@code collection}, converted to a {@code double}
       * value in the manner of {@link Number#doubleValue}.
       *
       * <p>Elements are copied from the argument collection as if by {@code collection.toArray()}.
       * Calling this method is as thread-safe as calling that method.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 27.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is ErrorValue.ErrorValueWithMessage -> KtConstantValue.KtErrorConstantValue(message, sourcePsi = null)
            is BooleanValue -> KtConstantValue.KtBooleanConstantValue(value, sourcePsi = null)
            is DoubleValue -> KtConstantValue.KtDoubleConstantValue(value, sourcePsi = null)
            is FloatValue -> KtConstantValue.KtFloatConstantValue(value, sourcePsi = null)
            is NullValue -> KtConstantValue.KtNullConstantValue(sourcePsi = null)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 33.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertSame(a, numberOrdering.min(a, b));
      }
    
      private static class NumberOrdering extends Ordering<Number> {
        @Override
        public int compare(Number a, Number b) {
          return ((Double) a.doubleValue()).compareTo(b.doubleValue());
        }
    
        @Override
        public int hashCode() {
          return NumberOrdering.class.hashCode();
        }
    
        @Override
        public boolean equals(@Nullable Object other) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/OrderingTest.java

        assertSame(a, numberOrdering.min(a, b));
      }
    
      private static class NumberOrdering extends Ordering<Number> {
        @Override
        public int compare(Number a, Number b) {
          return ((Double) a.doubleValue()).compareTo(b.doubleValue());
        }
    
        @Override
        public int hashCode() {
          return NumberOrdering.class.hashCode();
        }
    
        @Override
        public boolean equals(@Nullable Object other) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
Back to top