CurryInfo: abstract-curry-4.0.0 / AbstractCurry.Files.readACYString

definition:
readACYString :: String -> Maybe CurryProg
readACYString s =
  case
#ifdef __KMCC__
       reads s
#else
       readsUnqualifiedTerm ["AbstractCurry.Types","Prelude"] s
#endif
    of []       -> Nothing
       [(p,tl)] -> if all isSpace tl then Just p
                                     else Nothing
       _        -> Nothing
demand:
no demanded arguments
deterministic:
deterministic operation
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> {Just,Nothing}}
name:
readACYString
precedence:
no precedence defined
result-values:
{Just,Nothing}
signature:
String -> Prelude.Maybe AbstractCurry.Types.CurryProg
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms