Handbook
Glossary
line-limit? ( -- ? )
Vocabulary
prettyprint
.
sections
Inputs
None
Outputs
?
a
boolean
Word description
Tests if the line number limit has been reached, and thus if prettyprinting should stop.
Definition
USING:
accessors
kernel
math
namespaces
prettyprint.config
;
IN:
prettyprint.sections
:
line-limit?
( -- ? )
line-limit
get
dup
[
pprinter
get
line-count>>
<=
]
when
;