Package | Description |
---|---|
com.landawn.abacus.util | |
com.landawn.abacus.util.function | |
com.landawn.abacus.util.stream |
Modifier and Type | Method and Description |
---|---|
static FloatBiPredicate |
Fn.FnF.equal() |
static FloatBiPredicate |
Fn.FnF.greaterEqual() |
static FloatBiPredicate |
Fn.FnF.greaterThan() |
static FloatBiPredicate |
Fn.FnF.lessEqual() |
static FloatBiPredicate |
Fn.FnF.lessThan() |
static FloatBiPredicate |
Fn.FnF.notEqual() |
Modifier and Type | Field and Description |
---|---|
static FloatBiPredicate |
FloatBiPredicate.ALWAYS_FALSE |
static FloatBiPredicate |
FloatBiPredicate.ALWAYS_TRUE |
static FloatBiPredicate |
FloatBiPredicate.EQUAL |
static FloatBiPredicate |
FloatBiPredicate.GREATER_EQUAL |
static FloatBiPredicate |
FloatBiPredicate.GREATER_THAN |
static FloatBiPredicate |
FloatBiPredicate.LESS_EQUAL |
static FloatBiPredicate |
FloatBiPredicate.LESS_THAN |
static FloatBiPredicate |
FloatBiPredicate.NOT_EQUAL |
Modifier and Type | Method and Description |
---|---|
default FloatBiPredicate |
FloatBiPredicate.and(FloatBiPredicate other) |
default FloatBiPredicate |
FloatBiPredicate.negate() |
default FloatBiPredicate |
FloatBiPredicate.or(FloatBiPredicate other) |
Modifier and Type | Method and Description |
---|---|
default FloatBiPredicate |
FloatBiPredicate.and(FloatBiPredicate other) |
default FloatBiPredicate |
FloatBiPredicate.or(FloatBiPredicate other) |
Modifier and Type | Method and Description |
---|---|
abstract Stream<FloatList> |
FloatStream.collapse(FloatBiPredicate collapsible)
Merge series of adjacent elements which satisfy the given predicate using
the merger function and return a new stream.
|
abstract FloatStream |
FloatStream.collapse(FloatBiPredicate collapsible,
FloatBinaryOperator mergeFunction)
Merge series of adjacent elements which satisfy the given predicate using
the merger function and return a new stream.
|
abstract FloatStream |
FloatStream.rangeMap(FloatBiPredicate sameRange,
FloatBinaryOperator mapper)
Note: copied from StreamEx: https://github.com/amaembo/streamex
Returns a stream consisting of results of applying the given function to the ranges created from the source elements. |
abstract <T> Stream<T> |
FloatStream.rangeMapToObj(FloatBiPredicate sameRange,
FloatBiFunction<T> mapper)
Note: copied from StreamEx: https://github.com/amaembo/streamex
Returns a stream consisting of results of applying the given function to the ranges created from the source elements. |
Copyright © 2020. All rights reserved.