repeats? ( object -- ? )


Vocabulary
sequences.repeating

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the repeats class.

Definition
USING: classes.tuple.private kernel slots.private ;

IN: sequences.repeating

: repeats? ( object -- ? )
dup tuple? [ layout-of 7 slot \ repeats eq? ] [ drop f ] if
;