|
hace 9 años | |
---|---|---|
doc | hace 10 años | |
examples | hace 10 años | |
tests | hace 9 años | |
tools | hace 10 años | |
.travis.yml | hace 10 años | |
LICENSE | hace 10 años | |
README.md | hace 10 años | |
rx.lua | hace 9 años |
Reactive Extensions for Lua.
Cheer someone on using functional reactive programming:
local Rx = require 'rx'
Rx.Observable.fromRange(1, 4)
:map(function(x) return x * 2 end)
:concat(Rx.Observable.fromValue('who do we appreciate'))
:map(function(value) return value .. '!' end)
:subscribe(print)
See examples for more.
See here.
MIT, see LICENSE
for details.