eric-corumdigital
eric-corumdigital
``` class TypeName (a ∷ Type) (name ∷ Symbol) | a → name, name → a ``` For all types there is an instance of TypeName which bijectively maps types...
``` class Reverse (s :: Symbol) (r :: Symbol) | s -> r, r -> s instance reverseNil :: Reverse "" "" else instance reverseCons :: (Symbol.Cons h t s,...
CHG: As part of 0.12 changes, creating an EventListener is an effect and Purview handles this now. CHG: render/applyPatch refactored such that applyPatch is now internal; users can apply patches...
It seems clear that this package is intended to catch `Error` exceptions. However, `catchException` does this: ``` try { return t(); } catch (e) { if (e instanceof Error ||...