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


Vocabulary
math.ranges

Definition
USING: kernel ;

IN: math.ranges

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