Kalin-Rudnicki

Results 26 comments of Kalin-Rudnicki

I imagine you mean something like `circe`'s `ProductDecoder`s? ```scala final case class Person(firstName: String, lastName: String, age: Int) io.circe.Decoder.forProduct3[Person, String, String, Option[Int]]( "firstName", "lastName", "age", ) { (firstName, lastName, age)...

build.sbt: ```scala // // =====| |===== val Scala_3 = "3.1.3-RC5" val MyOrg = "io.github.kalin-rudnicki" val githubUsername = "Kalin-Rudnicki" val githubProject = "slyce-zio" ThisBuild / dynverVTagPrefix := false ThisBuild / dynverSonatypeSnapshots...

@jdegoes am I able to attempt this? If so, please clarify the following questions: - if command is `ab cd ef --arg-1=1 --arg-2=2`, are we looking for `.ab` or `.ef`?...

/attempt #191 Options Cancel my attempt

@vivasvan1, respectfully, I'd be trying to get the bounty 😂😜 I would personally do a significant part of this change in a different manner. Also, per the lastest commentor, and...

I will let ya go for it first :) I saw you mentioned being new to scala/zio, so I left a bunch of nits on the PR for using better...

I just got this error as well, when trying to generate my custom "Mirror" type, but its only happening for enum case objects ```scala sealed trait Enum1 object Enum {...

As hard as I try, I can not get to to generate `Show[A1.type]`... ```scala report.errorAndAbort( s"""${sym.termRef.show} |${sym.termRef.toTerm.tpe.show} |${Singleton.companion.apply(sym.termRef.toTerm).show} |${Singleton.companion.apply(sym.termRef.toTerm).tpe.show} |${Singleton.companion.apply(sym.termRef.toTerm).ref.show} |${Singleton.companion.apply(sym.termRef.toTerm).ref.tpe.show} |""".stripMargin, sym.pos, ) ``` ``` [error] | oxygen.meta.NewDeriveShowSpec.Enum1.A1 [error]...

There is something interesting going on under the hood when using quotes/splices to define a val vs `ValDef.let` or `Symbol.newVal`+`ValDef.apply`: ```scala val flags: Flags = valType match case ValType.Val =>...