repeat

Name

repeat -- Builds a list of repeating values.

Synopsis

(repeat . args)

Description

Builds a list of repeating values. ARGS must contain NUMBERs followed by VALUEs. Each VALUE is repeated NUMBER times in the resulting list. E.g. (repeat 3 'a 2 'b 1 'c) => (a a a b b c)

Implementation Notes

Module: (app scwm listops)

Defined in scheme/listops.scm at line 240 (CVS log)