definition:
|
hasTrailingPathSeparator :: FilePath -> Bool
hasTrailingPathSeparator [] = False
hasTrailingPathSeparator x@(_:_) = isPathSeparator (last x)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- | Is an item either a directory or the last character a path separator?
--
-- > hasTrailingPathSeparator "test" == False
-- > hasTrailingPathSeparator "test/" == True
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]}) |-> {False} || ({:}) |-> _}
|
name:
|
hasTrailingPathSeparator
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|