aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/collections.scala
blob: 910940e7749996db63414b5f8d4987b791ec8127 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                            
  

                            


                        
                                                                                            





                              
                                         


                                  
 
 
import scala.collection.generic.CanBuildFrom

object collections {
  
  List(1, 2, 3) map (x => 2)

  val s = Set(1, 2, 3)
  val ss = s map (_ + 1)

  val cbf: CanBuildFrom[List, Int, List[Int]] = scala.collection.immutable.List.canBuildFrom

  val nil = Nil
  val ints1 = 1 :: Nil
  val ints2 = 1 :: 2 :: Nil
  val ints3: List[Int] = ints2
  val f = (x: Int) => x + 1
  val ints4: List[Int] = List(1, 2, 3, 5)
    
  val ys = ints3 map (x => x + 1)
  val zs = ys filter (y => y != 0)

}