CurryInfo: verify-non-fail-2.0.0 / Verify.Helpers.isCurryID

definition: Info
 
isCurryID :: QName -> Bool
isCurryID (_,n) = case n of
  []               -> False
  x:xs | isAlpha x -> all (\c -> isAlphaNum c || c `elem` "'_") xs
       | otherwise -> all (flip elem opChars) n
 where
  opChars = "~!@#$%^&*+-=<>?./|\\:"
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Is a qualified name an allowed Curry identifier (i.e., not a generated id)?
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({(,)}) |-> _}
name: Info
 isCurryID
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (String, String) -> Prelude.Bool
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term