Joseph Young

Results 10 comments of Joseph Young

> How exactly does this get used? Good point, originally I was just messing around with deferring execution of expressions automatically (similar to https://github.com/natefaubion/purescript-call-by-name I believe), and found it surprising...

@rhendric It's possible, although you have to be explicit about the type of `Identity` when constructing it: ```haskell -- compiles fine in the pull req, with inferred type Con =>...

I think it's worth considering using JavaScript's Symbol primitive for tagging - I imagine the performance is very similar to strings once the Symbol is constructed, but with the benefit...

Smallest change would be to do: ```diff - loop (mapWithIndex indexer xs)

> Unfortunately I did not figure out a way to properly unit test this issue which is why I've included the sandbox to prove that the fix works as intended....

> We can probably file this safely under ‘things we'll never do’, but my dream solution might be something like a Prim.PartialFunction :: Type -> Type -> Type type (infixr...

Ah, I see elt is supplied as a parameter to document.evaluate. Regardless, it still does not perform well enough

I think this is a duplicate of #2019, which is now closed, so I'm closing this as fixed

In the HTML case, your script is running before the elements have been created. To illustrate this, add `console.log(document.querySelector('.vertical-gutter'));` somewhere in the script tag

ddaeyongee's solution doesn't work - there's no difference between the problem stated and their solution. In my version of ag-grid-react (30.1.0), the ref prop provides the grid api only, not...