Comment créer une liste avec le même élément n- fois ?
Implémentation manuelle :
scala> def times(n: Int, s: String) =
| (for(i <- 1 to n) yield s).toList
times: (n: Int, s: String)List[String]
scala> times(3, "foo")
res4: List[String] = List(foo, foo, foo)
Existe-t-il un moyen intégré de faire la même chose ?