Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,500 for greatest (0.15 sec)

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

        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}, using the same rules of comparison as
       * {@link Math#max(float, float)}.
       *
       * @param array a <i>nonempty</i> array of {@code float} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Floats.java

        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}, using the same rules of comparison as
       * {@link Math#max(float, float)}.
       *
       * @param array a <i>nonempty</i> array of {@code float} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Shorts.java

          if (array[i] < min) {
            min = array[i];
          }
        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}.
       *
       * @param array a <i>nonempty</i> array of {@code short} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
       * @throws IllegalArgumentException if {@code array} is empty
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Shorts.java

          if (array[i] < min) {
            min = array[i];
          }
        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}.
       *
       * @param array a <i>nonempty</i> array of {@code short} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
       * @throws IllegalArgumentException if {@code array} is empty
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Doubles.java

        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}, using the same rules of comparison as
       * {@link Math#max(double, double)}.
       *
       * @param array a <i>nonempty</i> array of {@code double} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Doubles.java

        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}, using the same rules of comparison as
       * {@link Math#max(double, double)}.
       *
       * @param array a <i>nonempty</i> array of {@code double} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Ints.java

          if (array[i] < min) {
            min = array[i];
          }
        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}.
       *
       * @param array a <i>nonempty</i> array of {@code int} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
       * @throws IllegalArgumentException if {@code array} is empty
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/UnsignedInts.java

            min = next;
          }
        }
        return flip(min);
      }
    
      /**
       * Returns the greatest value present in {@code array}, treating values as unsigned.
       *
       * @param array a <i>nonempty</i> array of unsigned {@code int} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array according to {@link #compare}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/UnsignedInts.java

            min = next;
          }
        }
        return flip(min);
      }
    
      /**
       * Returns the greatest value present in {@code array}, treating values as unsigned.
       *
       * @param array a <i>nonempty</i> array of unsigned {@code int} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array according to {@link #compare}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Longs.java

          if (array[i] < min) {
            min = array[i];
          }
        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}.
       *
       * @param array a <i>nonempty</i> array of {@code long} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
       * @throws IllegalArgumentException if {@code array} is empty
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top