|
9 yıl önce | |
---|---|---|
doc | 10 yıl önce | |
examples | 10 yıl önce | |
tests | 9 yıl önce | |
tools | 10 yıl önce | |
.travis.yml | 10 yıl önce | |
LICENSE | 10 yıl önce | |
README.md | 10 yıl önce | |
rx.lua | 9 yıl önce |
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.