bjornbytes / RxLua

Reactive Extensions for Lua

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

any Operators like switchMap, concatMap, exhaustMap or in furture release?

neroishero opened this issue · comments

any Operators like switchMap, concatMap, exhaustMap or in furture release?

+1 for concatMap and exhaustMap

for switchMap it's simple because :switch() is already implemented:

function Observable:switchMap(callback)
  return self:map(callback):switch()
end