CurryInfo: currycheck-4.0.0 / CurryCheck.containsPPOptionLine

definition:
containsPPOptionLine :: String -> Bool
containsPPOptionLine = any isOptionLine . lines
 where
  isOptionLine s = ("{-# OPTIONS_CYMAKE "   `isPrefixOf` s ||
                    "{-# OPTIONS_FRONTEND " `isPrefixOf` s )   -- -}
                   && "currypp" `isInfixOf` s
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- Does a program text contains a OPTIONS_FRONTEND line to call currypp?
indeterministic:
referentially transparent operation
infix:
no fixity defined
name:
containsPPOptionLine
precedence:
no precedence defined
result-values:
{.._#lambda508}
signature:
String -> Prelude.Bool
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms