| Package | Description |
|---|---|
| com.landawn.abacus.util | |
| com.landawn.abacus.util.function |
| Modifier and Type | Method and Description |
|---|---|
static <E extends Exception> |
N.count(double[] a,
int fromIndex,
int toIndex,
Throwables.DoublePredicate<E> filter)
Mostly it's designed for one-step operation to complete the operation in one step.
|
static <E extends Exception> |
N.count(double[] a,
Throwables.DoublePredicate<E> filter)
Mostly it's designed for one-step operation to complete the operation in one step.
|
static <E extends Exception> |
N.filter(double[] a,
int fromIndex,
int toIndex,
Throwables.DoublePredicate<E> filter) |
static <E extends Exception> |
N.filter(double[] a,
int fromIndex,
int toIndex,
Throwables.DoublePredicate<E> filter,
int max)
Mostly it's designed for one-step operation to complete the operation in one step.
|
static <E extends Exception> |
N.filter(double[] a,
Throwables.DoublePredicate<E> filter) |
static <E extends Exception> |
N.filter(double[] a,
Throwables.DoublePredicate<E> filter,
int max) |
<E extends Exception> |
u.OptionalDouble.filter(Throwables.DoublePredicate<E> predicate) |
static <E extends Exception> |
N.replaceIf(double[] a,
Throwables.DoublePredicate<E> predicate,
double newValue) |
<E extends Exception> |
MutableDouble.setIf(double newValue,
Throwables.DoublePredicate<E> predicate)
Set with the specified new value and returns
true if predicate returns true. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DoublePredicate
Refer to JDK API documentation at: https://docs.oracle.com/javase/8/docs/api/java/util/function/package-summary.html
|
Copyright © 2021. All rights reserved.