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
Currently, the method has the following signature:
runSafely :: LangL a -> LangL (Either Text a)
But actually it should work for AppL scenarios too.
runSafely :: AppL a -> AppL (Either Text a)
This can be done by introducing separate methods for AppL and LangL: EvalSafelyAppL, EvalSafelyLangL, and adding a type class with runSafely method which will be specified for both languages.
Currently, the method has the following signature:
runSafely :: LangL a -> LangL (Either Text a)
But actually it should work for
AppL
scenarios too.runSafely :: AppL a -> AppL (Either Text a)
This can be done by introducing separate methods for
AppL
andLangL
:EvalSafelyAppL
,EvalSafelyLangL
, and adding a type class withrunSafely
method which will be specified for both languages.The text was updated successfully, but these errors were encountered: