この関数を簡潔にするためにポイントフリーにしたいと考えています。私は他の関数にも必要なので、計算するのではなく明示的に長さを渡しています。私はそれを一度計算したいと思います。私は、目標の文字列パラメータを取り除くために管理してきましたが、他の2つと闘っています。この関数を暗黙にする
-- Cycle with respect to whitespace (currently only spaces).
-- Given a source string and its length, and a longer target string
-- (which may contain spaces) match the source to target such that:
-- 1. both will have the same length
-- 2. spaces in the target string will remain spaces
-- 3. chars from the source string will be cycled
--
-- Example:
-- src: "ALLY", len: 4
-- target: "MEET AT DAWN"
-- Result: "ALLY AL LYAL"
cycleWS :: String -> Int -> String -> String
cycleWS str len = fst . (foldr (\x (s, n) -> if x == ' ' then (s ++ " ", n) else (s ++ [str !! (n `mod` len)], n + 1)) ("", 0))
方法の代わりに、分かりやすい部分にそれを壊すことによって、それは単純なことについて? –
確かに、私は提案に開放されています。 – dimid
さて、文字列を別の文字列のスペースと 'cycle'で整列させる関数はどうでしょうか? –