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


Vocabulary
math.ranges

Definition
USING: kernel ;

IN: math.ranges

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