-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add fork
function
#70
Comments
This issue closed without implementing |
Thank you for your interest :) We've only dealt with unicast so far. Is there an expression you're thinking of? ex) const add1 = pipe(
[1,2,3,4],
map(a => a+1),
)
const forkedAdd1 = fork(add1);
const forkedAdd2 = fork(add1);
forkedAdd1.next(); // 2
forkedAdd1.next(); // 3
forkedAdd2.next(); // 2
forkedAdd3.next(); // 3 |
Thank you for the good reference! Let me know if you're interested in contributing |
Suggestion
β Suggestion
π» Use Cases
The text was updated successfully, but these errors were encountered: