Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

drop

Remove one Video or Audio value from the stack.

Call shape

drop<T: Video | Audio>(value: T) -> none

This is call-shape notation for lookup, not ClipAsm declaration syntax.

Graph inputs

NameTypeCardinality
valueTexactly one

Parameters and defaults

This program has no scalar parameters.

Result and stack behavior

This program produces no values.

All T inputs and outputs use one homogeneous type: Video or Audio. Use an explicit <Video> or <Audio> argument when the accessible stack makes inference ambiguous.

Default stack access is owned. See stack binding for ownership and visibility rules.

Timeline and markers

The program creates a new timeline when it returns Video or Audio.

Example

clipasm 1

audio("assets/music.wav")
drop

Expected validation result: no output values.

The reference checks parse and compile this exact example. Compilation does not inspect the named media files.

Behavior

  • The program consumes the bound value from the stack and produces no output value.

See also