| Package | Description |
|---|---|
| com.landawn.abacus.util | |
| com.landawn.abacus.util.function |
| Modifier and Type | Method and Description |
|---|---|
static <E extends Exception> |
N.count(int[] a,
int fromIndex,
int toIndex,
Throwables.IntPredicate<E> filter)
Mostly it's designed for one-step operation to complete the operation in one step.
|
static <E extends Exception> |
N.count(int[] a,
Throwables.IntPredicate<E> filter)
Mostly it's designed for one-step operation to complete the operation in one step.
|
static <E extends Exception> |
N.filter(int[] a,
int fromIndex,
int toIndex,
Throwables.IntPredicate<E> filter) |
static <E extends Exception> |
N.filter(int[] a,
int fromIndex,
int toIndex,
Throwables.IntPredicate<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(int[] a,
Throwables.IntPredicate<E> filter) |
static <E extends Exception> |
N.filter(int[] a,
Throwables.IntPredicate<E> filter,
int max) |
<E extends Exception> |
u.OptionalInt.filter(Throwables.IntPredicate<E> predicate) |
static <E extends Exception> |
N.replaceIf(int[] a,
Throwables.IntPredicate<E> predicate,
int newValue) |
<E extends Exception> |
MutableInt.setIf(int newValue,
Throwables.IntPredicate<E> predicate)
Set with the specified new value and returns
true if predicate returns true. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IntPredicate
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.