adding some missing methods, adding README with unsupported method list

This commit is contained in:
Bence Eros
2015-06-14 02:05:27 +02:00
parent a8871c9dfa
commit b9dab01b68
3 changed files with 30 additions and 4 deletions
+22
View File
@@ -0,0 +1,22 @@
# StreamJS Type Definitions
Unsupported StreamJS function / method signatures:
* Stream(collection)
* Stream(string)
* Stream.empty()
* filter(sample)
* map(path)
* flatMap(path)
* sorted(path)
* takeWhile(sample)
* dropWhile(sample)
* min(path)
* max(path)
* sum(path)
* average(path)
* allMatch(sample)
* anyMatch(sample)
* groupingBy(path)
* toMap(path, mergeFunction)
* partitioningBy(sample);
* Optional.empty()