CurryInfo: verify-non-fail-2.0.0 / Verify.WithSMT.untransOpName

definition:
 
untransOpName :: String -> Maybe QName
untransOpName s =
  let (mn,ufn) = break (=='_') s
  in if null ufn
       then Nothing
       else Just (mn, decodeSpecialChars (tail ufn))
demand:
 no demanded arguments
deterministic:
 deterministic operation
documentation:
 
Translates a (translated) SMT string back into qualified FlatCurry name.
Returns Nothing if it was not a qualified name.
failfree:
 _
indeterministic:
 referentially transparent operation
infix:
 no fixity defined
iotype:
 {(_) |-> {Just,Nothing}}
name:
 untransOpName
precedence:
 no precedence defined
result-values:
 {Just,Nothing}
signature:
 String -> Prelude.Maybe (String, String)
solution-complete:
 operation might suspend on free variables
terminating:
 possibly non-terminating
totally-defined:
 possibly non-reducible on same data term