CurryInfo: filepath-3.0.0 / System.FilePath.makeValid

definition:
makeValid :: FilePath -> FilePath
makeValid []                                     = "_"
makeValid path@(_:_)
  | isPosix                                      = path
  | length path >= 2 && all isPathSeparator path = take 2 path ++ "drive"
  | otherwise = joinDrive drv $ validElements $ validChars pth
 where
  (drv,pth) = splitDrive path
  validChars x = map f x
  f x | x `elem` badCharacters = '_'
      | otherwise = x
  validElements x = joinPath $ map g $ splitPath x
  g x = h (reverse b) ++ reverse a
      where (a,b) = span isPathSeparator $ reverse x
  h x = if map toUpper a `elem` badElements then a ++ "_" <.> b else x
      where (a,b) = splitExtensions x
demand:
argument 1
deterministic:
deterministic operation
documentation:
-- | Take a FilePath and make it valid; does not change already valid FilePaths.
--
-- > isValid (makeValid x)
-- > isValid x ==> makeValid x == x
-- > makeValid "" == "_"
-- > Windows: makeValid "c:\\test:of_test" == "c:\\test_of_test"
-- > Windows: makeValid "test*" == "test_"
-- > Windows: makeValid "c:\\test\\nul" == "c:\\test\\nul_"
-- > Windows: makeValid "c:\\test\\prn.txt" == "c:\\test\\prn_.txt"
-- > Windows: makeValid "c:\\test/prn.txt" == "c:\\test/prn_.txt"
-- > Windows: makeValid "c:\\nul\\file" == "c:\\nul_\\file"
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({[]}) |-> {:} || ({:}) |-> _}
name:
makeValid
precedence:
no precedence defined
result-values:
_
signature:
String -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term