← Standard library

QueryLane

sealed class QueryLane<T>
import QueryLane from Wax::Recording;

Frame-indexed optional samples from a recording query. Missing samples remain distinct from present rows. Read through At, Rows, or PresentFrames.

Recording.wax:289

Inherits from object. Follow these links for inherited members.

Members

Atmethod

public fn At(Frame frame) : T?

Returns the sample for an absolute frame, or null for an absent sample or a frame outside this lane.

Recording.wax:304

Rowsmethod

public fn Rows() : List<T>

Creates a new list of present samples in increasing frame order, omitting null samples. Reference-valued samples are not deep-copied.

Recording.wax:315

PresentFramesmethod

public fn PresentFrames() : List<Frame>

Creates a new list of the absolute frames having present samples, in the same order as Rows.

Recording.wax:327