Aloïs Cochard
Aloïs Cochard
A first step towards solving https://github.com/RustAudio/rust-lv2/issues/96
List(json1, json2, ...).par.map(json => Json.parse[Foo](json)) Can't find the Foo class (which is in a dependency) and throw ClassNotFound, Work without .par
How hard would it be to support an alternative encoding like this one: https://github.com/aloiscochard/scato I'ts quite a different transformation I suppose, but I'm looking forward your insights. Thanks!
An enum basically needs to - extend java.lang.Enum - set the ACC_ENUM flag - emit the appropriate, static methods (values, valueOf, ...) Flag can be set using a little bit...
``` trait Tree case object Empty extends Tree case class Leaf(x:Int) extends Tree case class Node(left: Tree, right: Tree) extends Tree ``` Not sure one could gain any benefit VS...
When using "any" mode If an error match more than one format it will be produced multiple times. Instead we want only one error, we must try to find a...
Currently it is specialized for Scala.