Chris Martin

Results 93 comments of Chris Martin

`/bin/ghc` is a symlink to `/bin/ghc-7.6.3`, which is an executable.

Oh, actually, it's a shell script, which runs the GHC in `/usr/lib64/ghc-7.6.3`. So that explains it.

I am creating a single `RiemannDestination[Reliable]` and reusing it throughout the lifetime of my application. I'm unclear from reading the docs, is that how this library is intended to be...

I've been very confused by the `foldr` documentation. > from right to left [...] evaluation actually traverses the Text from left to right If I have a `Text` of length...

I suppose I have the same question/request about packing as well. We have `unfoldr` but not `unfoldl`, and so I'm not sure how better to reverse-pack any more efficiently than...

I don't see any substantial time difference between forward/reverse unpacking, so I suppose you're right about `foldr`. ```haskell import Criterion.Main import qualified Data.Text as Text forward = take 200 ....

Would you accept a documentation PR -- to the `Options.Applicative` module documentation, the readme tutorial, or both -- adding an example to demonstrate the use of `fmap fold . sequenceA`...

If I understand correctly, it seems like the behavior of `cabal-fmt` already varies based on the way it is used? Current behavior: - When formatting `stdin`, no modules are added...

I've been working on a variant of this package with all the dependencies but base stripped out. A package candidate is up on Hackage: https://hackage.haskell.org/package/gambler-0.0.0.0/candidate @ocramz This isn't exactly what...