definition:
|
stripEnclosing :: Char -> Char -> String -> String
stripEnclosing lc tc s = case s of
c1:cs@(_:_) | c1 == lc && last cs == tc -> init cs
_ -> s
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Strips a leading and tailing character if they are present.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{:}) |-> {:,[]} || (_,_,{[]}) |-> {[]}}
|
name:
|
stripEnclosing
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Char -> Prelude.Char -> String -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|