generic

scala futures

Basic of Generics and Type Bounds in Scala

Reading Time: 3 minutes Introduction to Scala Generics Scala Generics are kind of like functions for variable types. With the usage of Scala Generics you should reuse our code. Normally, make a function for a task that we do a lot of, so instead of having to repeat the same code over and over again, we let the compiler and computer do that behind the scenes for us. Scala Continue Reading