remove

fun remove(billboard: Billboard): Boolean(source)

Removes a billboard from the collection.

const b = billboards.add(...);
billboards.remove(b); // Returns true

Return

true if the billboard was removed; false if the billboard was not found in the collection.

Parameters

billboard

The billboard to remove.

See also