CurryInfo: filepath-3.0.0 / System.FilePath.splitDirectories

definition:
splitDirectories :: FilePath -> [FilePath]
splitDirectories path =
        if hasDrive path then head pathComponents : f (tail pathComponents)
        else f pathComponents
    where
        pathComponents = splitPath path
        f xs = map g xs
        g x = if null res then x else res
            where res = takeWhile (not . isPathSeparator) x
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- | Just as 'splitPath', but don't add the trailing slashes to each element.
--
-- > splitDirectories "test/file" == ["test","file"]
-- > splitDirectories "/test/file" == ["/","test","file"]
-- > Valid x => joinPath (splitDirectories x) `equalFilePath` x
-- > splitDirectories "" == []
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {:,[]}}
name:
splitDirectories
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