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
Is your feature request related to a problem? Please describe.
It would be nice to be able to use the Fluture async library to work with the ReaderT monad.
Describe the solution you'd like
Seamless use the Fluture type.
Describe alternatives for how you do this now
I'm using the Async type.
This currently results in the following exception:
/Users/svozza/git/github.com/svozza/crocks-test/node_modules/crocks/Reader/ReaderT.js:23
function() { return (_type + "( " + (Monad.type()) + " )"); }
^
TypeError: Monad.type is not a function
at type (/Users/svozza/git/github.com/svozza/crocks-test/node_modules/crocks/Reader/ReaderT.js:23:49)
at ReaderT (/Users/svozza/git/github.com/svozza/crocks-test/node_modules/crocks/Reader/ReaderT.js:71:29)
at Function.ask (/Users/svozza/git/github.com/svozza/crocks-test/node_modules/crocks/Reader/ReaderT.js:33:14)
at Object.<anonymous> (/Users/svozza/git/github.com/svozza/crocks-test/fluture.js:7:14)
at Module._compile (internal/modules/cjs/loader.js:1085:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)
at Module.load (internal/modules/cjs/loader.js:950:32)
at Function.Module._load (internal/modules/cjs/loader.js:791:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)
at internal/main/run_main_module.js:17:47
The text was updated successfully, but these errors were encountered:
Sorry it's my bad, I hadn't seen the conversation on gitter so didn't have the context. The above comment was not to say that it won't be done but more to help you get through your immediate need why you waited for the change to be committed
Is your feature request related to a problem? Please describe.
It would be nice to be able to use the Fluture async library to work with the ReaderT monad.
Describe the solution you'd like
Seamless use the Fluture type.
Describe alternatives for how you do this now
I'm using the
Async
type.Code
This currently results in the following exception:
The text was updated successfully, but these errors were encountered: