Example usage for org.apache.commons.math3.stat.descriptive SummaryStatistics copy

List of usage examples for org.apache.commons.math3.stat.descriptive SummaryStatistics copy

Introduction

In this page you can find the example usage for org.apache.commons.math3.stat.descriptive SummaryStatistics copy.

Prototype

public static void copy(SummaryStatistics source, SummaryStatistics dest) throws NullArgumentException 

Source Link

Document

Copies source to dest.

Usage

From source file:com.civprod.util.stream.SummaryStatisticCollector.java

@Override
public BinaryOperator<SummaryStatistics> combiner() {
    return (SummaryStatistics coll, SummaryStatistics other) -> {
        SummaryStatistics.copy(other, coll);
        return coll;
    };/*from   www.  j a v  a 2  s  .c o  m*/
}