Simplifying Scala Collections — Bill Venners

The Scala standard library includes a large set of collections that covers a wide variety of use cases. For example, it offers both mutable and immutable collections, sequential and parallel collections, strict and lazy collections, and many combinations thereof. Although the standard collections library is widely used and works quite well today, this talk asks the question: how could the standard collections library be made better? We will look at various directions the Scala library could potentially evolve in the future, and discuss design trade-offs and migration strategies.

Related Talks

Lawful Asynchronous Programming — Daniel Spiewak

Lawful Asynchronous Programming — Daniel SpiewakLaws are our friends! They make it easier to reason about things by eliminating possibilities and constraining the problem space. Applying lawful, principled and reasonable programming to the thorny problem of asynchronous and concurrent systems seems like a natural fit, but the devil is in the details. This talk will explore ...

Type-Driven Development in Idris — Edwin Brady

Type-Driven Development in Idris — Edwin BradyIdris is a general purpose pure functional programming language with dependent types. In Idris, types are a first class language construct, meaning that they can be manipulated and computed like any other language construct. It encourages a type-driven style of development, in which programmers give types first and use interactive ...