ornamental
ornamental
Running a stream results in an unexpected log message if the stream fails, even though the stream-consuming effect catches the error. Example: ``` import zio.stream._ import zio._ object Application extends...
Code excerpt to reproduce the behaviour (Scala 2.13): ``` abstract class Prefixed(prefix: String) extends Newtype[String] { override def assertion = assert(startsWith(prefix)) } object Refined extends Prefixed("$") type Refined = Refined.Type...
It is widely believed that, in the process of schema evolution, changing field type from `T` to `T!` is not a breaking change. A counter-example is given below (a like...