私は haskell と関数型プログラミングの初心者です。これは非常に単純なことかもしれませんが、検索中に答えが見つかりませんでした。
ここにこの関数 main があります:
main :: IO ()
main = print =<< (`rnd_select` 6) =<< readNumbers
readNumbers :: IO [(Int,Int,Int)]
readNumbers = makeTriples . map rInt . words <$> readFile "somefile"
rInt :: String -> Int
rInt = read
makeTriples :: [a] -> [(a,a,a)]
makeTriples [] = []
makeTriples (x:y:z:zs) = (x,y,z) : makeTriples zs
rnd_select :: [a] -> Int -> IO [a]
rnd_select _ 0 = return []
rnd_select [] _ = return []
rnd_select xs count = do r <- randomRIO (0, (length xs)-1)
rest <- rnd_select (removeAt (r+1) xs) (count-1)
return ((xs!!r) : rest)
removeAt :: Int -> [a] -> [a]
removeAt _ [] = []
removeAt 1 (x:xs) = xs
removeAt k (x:xs) = let r = removeAt (k - 1) xs in x:r
これは IO モナドにラップされているため、値に対して関数を使用したい場合に困難になります。
ここでは bind 関数を使用して入力を rnd_select 関数に適用します。
(`rnd_select` 6) =<< readNumbers
しかし、それを行うには、それを値に部分的に適用する必要があります。
見栄えがよくないと思います。また、関数にさらに変数がある場合、どうすればよいかわかりません。
これらのような関数に値を適用するより良い方法があるかどうか知りたいですか?