Matt Renaud

Results 42 comments of Matt Renaud

> Nothing about this is at all relevant to Data.IntMap or Data.IntSet Ahh, that makes sense. > The main dispute on the libraries list had to do with the name...

Giving this some more thought, why add `lookupEntry` for Data.Map? Map already has `lookup :: k -> Map k v -> Maybe v`, so if you really wanted you could...

> The purpose for maps would be to extract the exact stored key. Thanks for the clarification; I retract my previous comment. I'll go ahead and send a proposal to...

Appologies if this is too tangential: I haven't seen a proposal but is there any reason why `filterM` from base couldn't be changed to: ``` filterM :: (Applicative m, Foldable...

Just to make sure I understand: 1. Reading through the code it looks like the `created` and `updated` fields in `did::Properties` should be moved to a new `DIDMetadata` struct, correct?...

Hey @sobolev-alexey, thanks for the suggestion and the resources! The lib.rs link appears to be broken, I found the same library on https://crates.io/crates/javascriptcore-rs, but there's not much documentation there unfortunately....

So, I'm silly, I just re-read the readme and noticed that it explicitly says HTML support is missing, so I guess this issue is more that it doesn't emit a...

After having just spent some time going through the massive APIs to put together approachable docs I'm leaning towards not introducing more functions to the API that will maybe get...

Super incredibly late to the party here :stuck_out_tongue_winking_eye: @tfausak > according to the PVP spec it's allowed to add features between an A.B release and an A.B.0 release How so?...

I just ran into this when trying to show someone how to find the function to turn `[IO ()] -> IO [()]` (aka `sequence` with `t ~ [], m ~...