functionalj.stream.intstream.AsIntStreamPlusWithStatistic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalj-core Show documentation
Show all versions of functionalj-core Show documentation
The module for FunctionalJ Core.
// ============================================================================
// Copyright (c) 2017-2021 Nawapunth Manusitthipol (NawaMan - http://nawaman.net).
// ----------------------------------------------------------------------------
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ============================================================================
package functionalj.stream.intstream;
import static functionalj.stream.intstream.IntStreamPlusHelper.dummy;
import static functionalj.tuple.IntIntTuple.intTuple;
import java.util.Comparator;
import java.util.IntSummaryStatistics;
import java.util.Objects;
import java.util.Optional;
import java.util.OptionalDouble;
import java.util.OptionalInt;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.IntFunction;
import java.util.function.IntPredicate;
import java.util.function.IntUnaryOperator;
import functionalj.function.IntComparator;
import functionalj.function.aggregator.IntAggregation;
import functionalj.function.aggregator.IntAggregationToBoolean;
import functionalj.function.aggregator.IntAggregationToInt;
import functionalj.stream.markers.Eager;
import functionalj.stream.markers.Terminal;
import functionalj.tuple.IntIntTuple;
import lombok.val;
public interface AsIntStreamPlusWithStatistic {
public IntStreamPlus intStreamPlus();
/** @return the size of the stream */
@Eager
@Terminal
public default int size() {
val streamPlus = intStreamPlus();
return (int)streamPlus
.count();
}
@Eager
@Terminal
public default long count() {
val streamPlus = intStreamPlus();
return streamPlus
.count();
}
@Eager
@Terminal
public default int sum() {
val streamPlus = intStreamPlus();
return streamPlus
.sum();
}
/** @return the product of all the number */
@Eager
@Terminal
public default OptionalInt product() {
val streamPlus = intStreamPlus();
return streamPlus
.reduce((a, b) -> a*b);
}
@Eager
@Terminal
public default OptionalDouble average() {
val streamPlus = intStreamPlus();
return streamPlus
.average();
}
public default IntSummaryStatistics summaryStatistics() {
val streamPlus = intStreamPlus();
return streamPlus
.summaryStatistics();
}
@Eager
@Terminal
/** Using the comparator, find the minimal value */
public default OptionalInt min() {
val streamPlus = intStreamPlus();
return streamPlus
.min();
}
@Eager
@Terminal
/** Using the comparator, find the maximum value */
public default OptionalInt max() {
val streamPlus = intStreamPlus();
return streamPlus
.max();
}
/** Fund the min value using the comparator */
public default OptionalInt min(IntComparator comparator) {
val streamPlus = intStreamPlus();
return streamPlus
.sorted(comparator)
.findFirst();
}
/** Fund the max value using the comparator */
public default OptionalInt max(IntComparator comparator) {
val streamPlus = intStreamPlus();
return streamPlus
.sorted(comparator.reverse())
.findFirst();
}
/** Return the value whose mapped value is the smallest. */
@Eager
@Terminal
public default > OptionalInt minBy(IntFunction mapper) {
val streamPlus = intStreamPlus();
return streamPlus
.sortedBy(mapper)
.findFirst();
}
/** Return the value whose mapped value is the smallest. */
@Eager
@Terminal
public default > OptionalInt minBy(IntAggregation aggregation) {
val mapper = aggregation.newAggregator();
return minBy(mapper);
}
/** Return the value whose mapped value is the biggest. */
@Eager
@Terminal
public default > OptionalInt maxBy(IntFunction mapper) {
val streamPlus = intStreamPlus();
return streamPlus
.sortedBy(mapper,(a, b) -> Objects.compare(a, b, Comparator.reverseOrder()))
.findFirst();
}
/** Return the value whose mapped value is the smallest. */
@Eager
@Terminal
public default > OptionalInt maxBy(IntAggregation aggregation) {
val mapper = aggregation.newAggregator();
return maxBy(mapper);
}
/** Return the value whose mapped value is the smallest using the comparator. */
@SuppressWarnings({ "rawtypes", "unchecked" })
@Eager
@Terminal
public default OptionalInt minBy(
IntFunction mapper,
Comparator super D> comparator) {
val streamPlus = intStreamPlus();
return streamPlus
.sortedBy(mapper, (Comparator)comparator)
.findFirst();
}
/** Return the value whose mapped value is the smallest using the comparator. */
@SuppressWarnings({ "rawtypes", "unchecked" })
@Eager
@Terminal
public default OptionalInt minBy(
IntAggregation aggregation,
Comparator super D> comparator) {
val mapper = aggregation.newAggregator();
val streamPlus = intStreamPlus();
return streamPlus
.sortedBy(mapper, (Comparator)comparator)
.findFirst();
}
/** Return the value whose mapped value is the biggest using the comparator. */
@SuppressWarnings({ "rawtypes", "unchecked" })
@Eager
@Terminal
public default OptionalInt maxBy(
IntFunction mapper,
Comparator super D> comparator) {
val streamPlus = intStreamPlus();
return streamPlus
.sortedBy(mapper, (Comparator)comparator.reversed())
.findFirst();
}
/** Return the value whose mapped value is the biggest using the comparator. */
@SuppressWarnings({ "rawtypes", "unchecked" })
@Eager
@Terminal
public default OptionalInt maxBy(
IntAggregation aggregation,
Comparator super D> comparator) {
val mapper = aggregation.newAggregator();
val streamPlus = intStreamPlus();
return streamPlus
.sortedBy(mapper, (Comparator)comparator.reversed())
.findFirst();
}
/** Return the value whose mapped value is the smallest mapped int value. */
public default OptionalInt minOf(IntUnaryOperator mapper) {
val streamPlus = intStreamPlus();
val result
= streamPlus
.mapToObj(i -> IntIntTuple.of(i, mapper.applyAsInt(i)))
.min ((a, b) -> Integer.compare(a._2, b._2))
.map (t -> t._1);
return result.isPresent()
? OptionalInt.of((int)result.get())
: OptionalInt.empty();
}
/** Return the value whose mapped value is the smallest mapped double value. */
public default OptionalInt minOf(IntAggregationToInt aggregation) {
val mapper = aggregation.newAggregator();
return minOf(mapper);
}
/** Return the value whose mapped value is the largest mapped int value. */
public default OptionalInt maxOf(IntUnaryOperator mapper) {
val streamPlus = intStreamPlus();
Optional