Add missing sum() on Streams.

This commit is contained in:
Ilya Ryzhenkov
2014-12-15 18:11:29 +03:00
parent f7d4ca092c
commit 846014b37f
3 changed files with 50 additions and 0 deletions
@@ -25,6 +25,7 @@ fun generateCollectionsAPI(outDir: File) {
// TODO: decide if sum for byte and short is needed and how to make it work
for (numeric in listOf(Int, Long, /*Byte, Short, */ Double, Float)) {
build(builder, Iterables, numeric)
build(builder, Streams, numeric)
}
for (numeric in listOf(Int, Long, Byte, Short, Double, Float)) {