Created
July 17, 2015 02:09
-
-
Save yelouafi/65bac7911834a8b5e322 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// all : ( Stream a, a -> aBoolean ) -> Promise Boolean | |
Stream.prototype.all = function(pred) { | |
return this.reduce( (prev, cur) => prev && !!pred(cur), true ); | |
} | |
Stream.seq([1,2,3,4,5], 0, 1000).all( x => x % 2) // => false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment