Stringのmap()

気分的にscala.collection.immutable.IndexedSeq[Char]になって欲し気がしないでもない。。。

気分的にscala.collection.immutable.IndexedSeq[Char]になって欲し気がしないでもない。。。

  • タグ:
  • タグはありません
scala> "1234567789".map( x => x )        
res0: String = 1234567789

scala> "1234567789".map( x => Option(x) )          
res1: scala.collection.immutable.IndexedSeq[Option[Char]] = Vector(Some(1), Some(2), Some(3), Some(4), Some(5), Some(6), Some(7), Some(7), Some(8), Some(9))