padTo

trait Collection[A] {
  def padTo(m: Int, a: A): Collection[A]
}

padTo は、長さが m になるまで右側に値 a を詰め込んだコレクションのコピーを作成します。