definition:
|
isSmallComment :: Token -> Bool
isSmallComment x = case x of
SmallComment _ -> True
_ -> False
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- test for category "SmallComment"
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({SmallComment}) |-> {True} || ({BigComment}) |-> _ || ({Text}) |-> _ || ({Letter}) |-> _ || ({Code}) |-> _ || ({ModuleHead}) |-> _ || ({Meta}) |-> _}
|
name:
|
isSmallComment
|
precedence:
|
no precedence defined
|
result-values:
|
{False,True}
|
signature:
|
Token -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|