CurryInfo: stylechecker-2.0.0 / Check.Src.LineLength.checkLineLength

definition:
checkLineLength :: SrcLine -> CSM ()
checkLineLength (n,l) = do
  c <- getConfig
  when (length l > (maxLineLength c))
       (report (Message
                 (Span 
                   (Position n 1)
                   (Position n (length l)))
                 (text "line too long")
                 (text "line should be under"
                 <+> colorizeKey (show (maxLineLength c))
                 <+> text "character(s)")
               )
       )
demand:
argument 1
deterministic:
deterministic operation
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({(,)}) |-> _}
name:
checkLineLength
precedence:
no precedence defined
result-values:
_
signature:
(Prelude.Int, String)
-> 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