reverse-append

Prepend a reversed sequence to another sequence.

reverse-append(#[5, 4, 3, 2, 1], #[6, 7, 8]) ⇒ #[1, 2, 3, 4, 5, 6, 7, 8]

Exported from

Modifiers

open

Arguments

reversed-headAn instance of <sequence>.  A sequence to be reversed and prepended to tail.
tailAn instance of <sequence>.

Values

new-sequenceAn instance of <sequence>.
Sequence-Utilities, written by Matthias Hölzl, provides common or oft-used operations performed on <sequence>s.
The class of collections whose keys are consecutive integers starting from zero.