streams
streams
Playing around with capabilities for concurrent functional processing.
PoC state.
Installation
dependencies:
streams:
github: waterlink/streams
Usage
require "streams"
include Streams
Short example
fut = source("Hello world".each_char)
.map(f Char[__.upcase])
.select(f Char[77 < __.ord])
.run_with(Sink.each f Char[print __])
# => Streams::Future<...>
Eventually it will output OWOR
.
Folding in run_with
source("Hello world".each_char)
.map(f Char[__.upcase])
.select(f Char[77 < __.ord])
.map(f Char[__.ord])
.run_with(Sink.fold f2 [Int32, Int32][_1 + _2])
.map(f Int32[puts(__)])
Eventually it will output 327
.
One argument function syntax
Function with one argument of type T: f T[...]
, where ...
- is the body of the function.
Body of the function can reference "placeholder" __
which will be equal to function argument, when it will be called.
Example:
x = f Int32[__ * 3 + 1]
x.call(7) # => 22
Two argument function syntax
Function with two arguments of types T1, T2: f2 [T1, T2][...]
, where ...
- is the body of the function.
Body of the function can reference first and second arguments as "placeholder" _1
and _2
respectfully.
Example:
x = f2 [Int32, Char][_1 * _2.ord < 1000]
x.call(16, 'a') # => false
Contributing
- Fork it ( https://github.com/waterlink/streams/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- waterlink Oleksii Fedorov - creator, maintainer
Repository
streams
Owner
Statistic
- 0
- 0
- 0
- 0
- 1
- almost 9 years ago
- December 8, 2015
License
MIT License
Links
Synced at
Wed, 06 Nov 2024 23:58:10 GMT
Languages