-
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
feat: add fx
#251
feat: add fx
#251
Conversation
3cb2249
to
6ffc881
Compare
8c3c798
to
d0915ed
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow
import takeWhile from "./takeWhile"; | ||
import toAsync from "./toAsync"; | ||
|
||
class FxAsyncIterable<A> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This class seems to act like a Factor
. Can you explain this philosophy in detail?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reference -> https://en.wikipedia.org/wiki/Fluent_interface (on issue #250)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was also a need to use it in a method chaining, so I decided to provide it
Fixes #250
Supports method chaining only for commonly used functions.
fx