You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
In the scalding code, we are treating the Configuration like an immutable object and passing functions from Configuration => Configuration around, the problem is, Configuration is mutable, and it is not at all clear how to reason about such changes.
I think the better approach is to use the Reader Monad, which is basically combinators on (Configuration) => T and T => ((Configuration) => U)
The text was updated successfully, but these errors were encountered:
In the scalding code, we are treating the Configuration like an immutable object and passing functions from
Configuration => Configuration
around, the problem is, Configuration is mutable, and it is not at all clear how to reason about such changes.I think the better approach is to use the Reader Monad, which is basically combinators on
(Configuration) => T
andT => ((Configuration) => U)
The text was updated successfully, but these errors were encountered: