MCPcopy
hub / github.com/andremichelle/openDAW / create

Function create

packages/studio/core-processors/src/processing.ts:16–23  ·  view source on GitHub ↗
(transporting: boolean,
                           discontinuous: boolean,
                           playing: boolean,
                           bpmChanged: boolean)

Source from the content-addressed store, hash-verified

14
15export namespace BlockFlags {
16 export const create = (transporting: boolean,
17 discontinuous: boolean,
18 playing: boolean,
19 bpmChanged: boolean): int => 0
20 | (transporting ? BlockFlag.transporting : 0)
21 | (discontinuous ? BlockFlag.discontinuous : 0)
22 | (playing ? BlockFlag.playing : 0)
23 | (bpmChanged ? BlockFlag.bpmChanged : 0)
24}
25
26export type Block = Readonly<{

Callers 2

createInstrumentMethod · 0.50
replaceMIDIInstrumentMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected