private <T> T reduce(Collection<T> collection, BinaryOperator operator, T init){ return (T)collection.stream().reduce(init,operator); }