Reactive Extensions for Lua

bjorn df0972004d Test Observable.takeUntil; 9 yıl önce
doc 28429ab7f8 Improve documentation; 10 yıl önce
examples ec090ab76a Remove sum example; 10 yıl önce
tests df0972004d Test Observable.takeUntil; 9 yıl önce
tools 28429ab7f8 Improve documentation; 10 yıl önce
.travis.yml 122b683bec Travis; 10 yıl önce
LICENSE d64834faa6 Initial commit; 10 yıl önce
README.md 4704e1feb0 Update README example; 10 yıl önce
rx.lua d95beda0f1 Improve Observable.skipUntil; 9 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(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.

Documentation

See here.

Related

License

MIT, see LICENSE for details.