[1,b] ( b -- range )
Factor documentation > Factor handbook > The language > Collections > Sequence operations > Numeric ranges
Prev:[0,b] ( b -- range )
Next:[0,b) ( b -- range )


Vocabulary
math.ranges

Definition
USING: kernel ;

IN: math.ranges

: [1,b] ( b -- range ) 1 swap [a,b] ; inline