Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

livescriptを更に闇深く。prelude.lsで関数型の深淵を覗き見る その3:文字列編

prelude.ls記事の続き、今回は数値に適用される関数です。

実際のところ

よくあるやつ

join "," [1 to 10]
#>> '1,2,3,4,5,6,7,8,9,10'

split "," '1,2,3,4,5,6,7,8,9,10'
#>> [ '1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ]

capitalize 'hello world'
#>>'Hello world'

珍しい奴

unlines

リストの要素を改行(¥n)で繋いでくれる

unlines [\one \two \three]
#>> 'one\ntwo\nthree'