Modifying constructor for repetition structures.
(change-repetition x [:range <range>] [:element <element>])
This is an often useful alternative to make-repetition.
We construct a new repetition structure that is a copy of
This is an ordinary
Macro:
(defmacro change-repetition (x &rest args) (std::change-aggregate 'repetition x args '((:range . repetition->range) (:element . repetition->element)) 'change-repetition 'nil))