Derek Mueller
Derek Mueller
I get the same error for the following code: ``` module Main where import Prelude import Effect (Effect) import Effect.Console (log) import Foreign import Foreign.Class (class Encode, class Decode) import...
The README is actually about having a more intuitive way of translating the function overloading in the p5.js API. For example, the p5.js "vertex" function (https://p5js.org/reference/#/p5/vertex) has two function signatures:...
Yes, that sounds good. There shouldn't be name conflicts since the functions are all defined in the same namespace in p5.js.
That sounds good to me. It looks like it's an oversight in the p5.js API doc for image.
I'm not sure the linked approach of using phantom types would work, since it appears to only support single inheritance. Graphics has methods from both p5.Element and p5.prototype. Adding the...