trim-tail-slice ( ... seq quot: ( ... elt -- ... ? ) -- ... slice )
Factor handbook » The language » Collections » Sequence operations » Trimming sequences

Prev:trim-head-slice ( ... seq quot: ( ... elt -- ... ? ) -- ... slice )


Vocabulary
sequences

Inputs
seqa sequence
quota quotation


Outputs
slicea slice


Word description
Removes elements starting from the right side of a sequence if they match a predicate. Once an element does not match, the test stops and the rest of the sequence is left on the stack as a slice.

Examples
USING: prettyprint math sequences ; { 0 0 1 2 3 0 0 } [ zero? ] trim-tail-slice .
T{ slice { to 5 } { seq { 0 0 1 2 3 0 0 } } }


See also
trim, trim-slice, trim-head, trim-head-slice, trim-tail

Definition


: trim-tail-slice
( ... seq quot: ( ... elt -- ... ? ) -- ... slice )
(trim-tail) head-slice ; inline