Chaining Operation in Scala 2.13
Scala 2.13 introduced chaining operations using pipe and tap methods. This way we can very easily chain different methods with ease. Code without pipe and tap: object Main extends App { def deduplicator(base: String) = base + "_" + UUID.randomUUID(...
Jan 7, 20231 min read
