definition:
|
isPathSeparator :: Char -> Bool
isPathSeparator = (`elem` pathSeparators)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- | Rather than using @(== 'pathSeparator')@, use this. Test if something
-- is a path separator.
--
-- > isPathSeparator a == (a `elem` pathSeparators)
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {flip}}
|
name:
|
isPathSeparator
|
precedence:
|
no precedence defined
|
result-values:
|
{flip}
|
signature:
|
Prelude.Char -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|