Rocket.jl
Rocket.jl copied to clipboard
Functional reactive programming extensions library for Julia
This PR adds Julia 1.10 to the test set
Here is minimum working example: ```julia subject = Subject(Int) paired = subject |> pairwise() subscribe!(paired, logger("paired")) for i = 1:10 @async next!(subject, i) end ``` output ``` [paired] Data: (1,...
Hi there, it would be nice to make `take!` also work on Rocket.jl observables. Something like the following ```julia function take!(datastream::Subscribable) c = Channel(1) subscribe(datastream, lambda(on_next=d -> put!(c, d) )...