Skip to content
Archive of entries posted on June 2010

Avoid structural types when pimping libraries

Methods in structural types are called via reflection, which is a lot slower than normal method calls. This can make “Pimp My Library” functions slow.

Scala on NetBeans 6.9

Installing the Scala plugin on NetBeans 6.9.

Converting an Option[A] to an Option[B]

How to convert an Option holding one type to an Option holding another type by using the collect method.