Scala contractor
-
Felstar Ltd
- Epsom
- https://www.linkedin.com/in/dinofancellu/
Block or Report
Block or report fancellu
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
-
GroupFinder Public
A simple piece of utility code to take a List and group its elements based on List membership, whilst returning unmatching elements, without unnecessary changing of order, via Group case class
Scala 3
-
1
import java.util
23import org.apache.kafka.clients.consumer.KafkaConsumer
45import scala.collection.JavaConverters._
-
1
// Coproduct is extension of Either concept, to N multually exlusive choices23type ISB = Int :+: String :+: Boolean :+: CNil
45val isb = Coproduct[ISB]("foo") //> isb : qaaz.ISB = foo