Rahul Muttineni

Results 228 comments of Rahul Muttineni

I'm not understanding why java complains about the folder structure. Say you have: `java/Utils.java` ```java package eta.array.test; public class Utils { public static void someMethod() {...} } ``` You can...

@jcolivo That problem looks related to: https://github.com/typelead/etlas/issues/24. It seems to be a powershell related issue.

It's `~/.eta-repl`. Leaving this open as reminder that this should be in the docs.

Hi @rajcspsg, it looks like you need to update your fork's `master` to the current master for `eta` and then make you changes on top of a new branch that...

Looks like the build failed: https://circleci.com/gh/typelead/eta/1467?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link Can you make sure you run `./cleaninstall.sh` with your changes and made it pass locally?

@tittoassini By chance do you use some form of continuation passing style in implementing `flat`? If so, you'll need to add on a `trampoline`. For now, can you let me...

@tittoassini `trampoline` solves the SOE on the "thread" of computation that is tail-called, not on every possible computation in the problem. Doing so would kill lots of performance since that...

The `Java` monad is isomorphic to the `ST` monad where the state threads are just raw Java objects. The implemention of `mfix` for the `ST` monad is: ```haskell -- |...

This should be a good idea. @jneira Do you see any immediate consequences of doing this? I know you've struggled a lot with encoding on the Windows side.