Pedro Rodriguez Tavarez
Pedro Rodriguez Tavarez
At the moment, it is possible to pass an empty list or set when encoding items. Of course empty sets, lists and strings aren't allowed in DynamoDB and such requests...
With scalactic in the project, the following will throw a warning about `OptionPartial`: ```scala import org.scalactic.anyval.PosLong val x: PosLong = 1 val y = PosLong(1) ``` This is happening because...
## Description I tried to build `hoogle` (sha: fca9b98652540ac513af99cca0c103ac83444b5c) with `etlas build`. Got the following error: ``` Building library for mmap-0.5.9.. [1 of 1] Compiling System.IO.MMap eta: panic! (the 'impossible'...
The title might be confusing, here's what's happening. We have a project (sbt) that has nothing in it but a resource file. This file is shared with other projects via...
Bloop's CLI currently prints out errors last-to-first. Though this is great when you are running the cli next to code, it makes it hard to pipe the errors into simple...
Auto derivation, though convenient, can cause increases in compile time (since the macro runs on a per-call-site basis), as well as make implicit instances of Transformers placed in the companion...
Scala 1.12. Kantan 0.6.1 ``` λ val x = ("""hello"the"world""", 123) x: (String, Int) = ("hello\"the\"world", 123) λ List(x).asCsv(rfc) res4: String = """"hello""the""world",123 """ λ List(x).asCsv(rfc.quoteAll) res9: String = """"hello"the"world","123"...
Fails with: ``` Error matching Nil in line val m.Source(m.Pkg(_, stats) :: Nil) = source.transform { // Remove bodies from methods like `private def foo: Unit` that can't be abstract....
Currently, a tag address for: ```scala def foo[A, B, C](a: A, b: B, c: C): Baz ``` Would create the tag address: ``` def \zsfoo[A, B, C](a: A, b: B,...
RE: https://github.com/pjrt/stags/blob/master/stags/src/test/scala/co/pjrt/stags/TagGeneratorTest.scala#L133-L134