Reactive Extensions for Lua

bjorn 691b4a98eb combineLatest -> combine; Update documentation; 10 yıl önce
doc 691b4a98eb combineLatest -> combine; Update documentation; 10 yıl önce
examples bab9d281bd Add Observable.concat; Update README; Add concat example; 10 yıl önce
tests 691b4a98eb combineLatest -> combine; Update documentation; 10 yıl önce
tools 5ff922f680 Update docroc; Update documentation; 10 yıl önce
.travis.yml 122b683bec Travis; 10 yıl önce
LICENSE d64834faa6 Initial commit; 10 yıl önce
README.md cfd2d5fc68 Move travis; 10 yıl önce
rx.lua 691b4a98eb combineLatest -> combine; Update documentation; 10 yıl önce

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.