check-circular-clumps ( seq n -- seq n )


Vocabulary
grouping.private

Definition
USING: kernel math sequences ;

IN: grouping.private

: check-circular-clumps ( seq n -- seq n )
2dup 1 - swap bounds-check 2drop ; inline