push-when ( obj/f seq -- ) (original) (raw)

push-when ( obj/f seq -- )

Vocabulary
html5

Inputs

obj/f an object
seq an object

Outputs
None

Definition

USING: kernel sequences ;

IN: html5

: push-when ( obj/f seq -- ) over [ push ] [ 2drop ] if ; inline