Reactive Extensions for Lua

bjorn ec090ab76a Remove sum example; пре 10 година
doc 84384f3e57 Remove Observable.sum from core API; пре 10 година
examples ec090ab76a Remove sum example; пре 10 година
tests 14113348f9 Clean up concat test; пре 10 година
tools 5ff922f680 Update docroc; Update documentation; пре 10 година
.travis.yml 122b683bec Travis; пре 10 година
LICENSE d64834faa6 Initial commit; пре 10 година
README.md cfd2d5fc68 Move travis; пре 10 година
rx.lua 84384f3e57 Remove Observable.sum from core API; пре 10 година

README.md

RxLua Build Status

Reactive Extensions for Lua.

Examples

Cheer someone on using functional reactive programming:

local Rx = require 'rx'

Rx.Observable.fromRange(2, 8, 2)
  :concat(Rx.Observable.fromValue('who do we appreciate'))
  :map(function(value) return value .. '!' end)
  :subscribe(print)

See examples for more.

Documentation

See here.

Related

License

MIT, see LICENSE for details.