Peter Empen
Peter Empen
## Reproduction steps Scala version: 2.13.8 ```scala trait MapI[C] { def i: Int def s: String def copy(i: Int = this.i, s: String = this.s): C def mapI(i: Int): C...
Hi Li, what is your attitude towards an additional _read_ method that will never throw an exception? I mean a signature like `def maybeRead[T: Reader](s: ujson.Readable): Either[String, T]` where `String`...
It seems that `tuple2Getter` does not work correctly: ``` scala val coll = db.getCollection("Tuple2Test") val anyDoc = new BasicDBObject coll.remove(anyDoc) val tuple = (1,"a") val tupleField = "tuple".fieldOf[(Int,String)] coll.insert(tupleField(tuple)) val...
## Compiler version any starting with 3.3.1 (3.3.0 works fine) ## Minimized code You may reproduce the issue by `git clone https://github.com/scala-graph/scala-graph.git` and in SBT ``` project core ++3.3.0 compile...