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'