Handbook
Glossary
adjust-count-limit ( n stream -- n' stream )
Vocabulary
io
.
streams
.
limited
.
private
Inputs
n
an
object
stream
an
object
Outputs
n'
an
object
stream
an
object
Definition
USING:
accessors
kernel
math
;
IN:
io.streams.limited.private
:
adjust-count-limit
( n stream -- n' stream )
2dup
[
+
]
change-count
[
count>>
]
[
limit>>
]
bi
>
[
dup
[
count>>
]
[
limit>>
]
bi
-
[
-
]
curry
dip
dup
limit>>
>>count
]
when
;
inline