This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Re: Creating map from list of pairs

1 reply
Seth Tisue
Joined: 2008-12-16,
User offline. Last seen 34 weeks 3 days ago.

>>>>> "Dave" == Dave Ray writes:

Dave> Secondly, is there a nicer way to turn an Option into a Set than
Dave> this:

Well, there's:

def toSet[T](o : Option[T]) : Set[T] = Set(o.toList:_*)

which is shorter, but less "nice" in one sense, since it involves
creating a list along the way. This is how I would write it inline, but
in a library of utility methods, I would write it your way -- or maybe
measure to see what's fastest.

Florian Hars
Joined: 2008-12-18,
User offline. Last seen 42 years 45 weeks ago.
Re: Creating map from list of pairs

Seth Tisue schrieb:
> Well, there's:
>
> def toSet[T](o : Option[T]) : Set[T] = Set(o.toList:_*)

Or if you want to give the "use descriptive names" faction a fit:

def toSet[T](o : Option[T]) = (Set[T]() /: o)(_ + _)

- Florian

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland