CurryInfo: stylechecker-2.0.0 / Check.Src.WhiteSpaces.checkWSpaces'

definition:
checkWSpaces' :: String -> Int -> Int -> CSM ()
checkWSpaces' []     _ _ = return ()
checkWSpaces' (x:xs) l c = do
  when (isWhiteSpace x)
    (report (Message
      (Span 
        (Position l c)
        (Position l (c+1)))
      ( colorizeKey "Whitespace aside of spaces, linebreaks and tabs found"
        <+> text "found")
      ( text "delete"
        <+> colorizeKey "Whitespaces")))
  checkWSpaces' xs l (c+1)
demand:
argument 1
deterministic:
deterministic operation
failfree:
(_, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({[]},_,_) |-> _ || ({:},_,_) |-> _}
name:
checkWSpaces'
precedence:
no precedence defined
result-values:
_
signature:
String -> Prelude.Int -> Prelude.Int
-> Control.Monad.Trans.State.StateT Types.CheckState Data.Functor.Identity.Identity ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term