VocabularysequencesInputsOutputsWord descriptionCreates a new sequence without the element at index
n.
ExamplesNotice that the original sequence is left intact:
USING: sequences prettyprint kernel ;
{ 1 2 3 } 1 over remove-nth . .
{ 1 3 }
{ 1 2 3 }
See alsoremove,
remove-eq,
remove-eq!,
remove!,
remove-nth!Definition