ByteString
私はそのような言葉に分割したい:
import qualified Data.ByteString as BS
main = do
input <- BS.getLine
let xs = BS.split ' ' input
Word8
しかし、GHCは文字リテラルをそれ自体に変換できないように見えるので、次のようになりました。
Couldn't match expected type `GHC.Word.Word8'
with actual type `Char'
In the first argument of `BS.split', namely ' '
In the expression: BS.split ' ' input
Hoogleは、型シグネチャがの何も検出せず、Char -> Word8
無効Word.Word8 ' '
な型コンストラクターです。それを修正する方法について何かアイデアはありますか?