Stefan Fehrenbach
Stefan Fehrenbach
You can (ab)use sections and {{.}} to conditionally include passages like this in mustache: Template: {{#foo}}quox: {{.}}{{/foo}} Data (JSON): {"foo": "bar"} Output: quox: bar This does not work in clostache:...
This implements deriving support for Hashable, as discussed in purescript/purescript-prelude#188. The generated code is not quite ideal at the moment. For this datatype: ```PureScript data Foo = Foo Int Boolean...
- [x] The main issue is that the BLOB format is not sufficiently self-describing and cannot be deserialized without knowing the output type. Some of the things below directly or...
There is a bug in Spark regarding nontotal user-defined functions: https://issues.apache.org/jira/browse/SPARK-16681 We work around it with 6f92f8272b64d3ac0950e88a5a87b28a84e58fed, by making the unbrand UDF "total" (return null instead of throwing) but it...
Parse `lambda x . e` as `lambda x : _ . e`. Parse `lambda x y . e` as `lambda (x : _) (y : _) . e`.
Currently this works: ``` assert (lambda f : Int -> * -> Int . f 2 Int) (lambda (x y : _7) . add x 1) = 5; ``` That...
Consider a PTS file that has a type error and then triggers a bug in the type checker (or probably anywhere else in the PTS interpreter).. The type error will...
I would like to add a `Hashable` typeclass to the prelude and deriving support for it to the compiler. It is intended as an approximation of equality for use in...