Harry Chen

Results 5 comments of Harry Chen

@sellout seems it doesn't work: (matryoshka + scalaz) ```sh def expr[T](n: Int)(implicit T: Corecursive.Aux[T, Option]): Trampoline[T] = { n match { case 0 => Trampoline.delay(none[T].embed) case m => Trampoline.suspend(expr(m -...

Thanks, @sellout . very helpful. by using hyloM, the stack overflow issue is gone. I wonder if it is because holyM does not build up the structure at all.

My bad. I try to use skeuomorph in my project to transform avro schema to/from spark struct-type. my attempt looks like this: https://github.com/chenharryhua/nanjin/blob/master/spark/src/main/scala/com/github/chenharryhua/nanjin/spark/NJDataTypeF.scala . skeuomorph looks like a more general/idiomatic...

Thank you, @dmarticus. I will have a try later. I am uncertain about how to transform AvroF to MuF once the logical type is added and its impact on Probuf...