同じ要素をn回含むリストを作成する方法は?
手動での実装:
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)
同じことを行う組み込みの方法もありますか?
同じ要素をn回含むリストを作成する方法は?
手動での実装:
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)
同じことを行う組み込みの方法もありますか?
scala.collection.generic.SeqFactory.fill(n:Int)(elem: =>A)を参照してください。 、などSeq
のコレクション データ構造が拡張されます。Stream
Iterator
scala> List.fill(3)("foo")
res1: List[String] = List(foo, foo, foo)
警告Scala 2.7 では使用できません。
このtabulate
ように使って、
List.tabulate(3)(_ => "foo")
私が思うに flatMap をエミュレートする別の答えがあります(このソリューションは duplicateN を適用すると Unit を返すことがわかりました)
implicit class ListGeneric[A](l: List[A]) {
def nDuplicate(x: Int): List[A] = {
def duplicateN(x: Int, tail: List[A]): List[A] = {
l match {
case Nil => Nil
case n :: xs => concatN(x, n) ::: duplicateN(x, xs)
}
def concatN(times: Int, elem: A): List[A] = List.fill(times)(elem)
}
duplicateN(x, l)
}
}
def times(n: Int, ls: List[String]) = ls.flatMap{ List.fill(n)(_) }
しかし、これはむしろ事前定義されたリスト用であり、各要素を n 回複製したい