what have i done

This commit is contained in:
2025-10-15 15:05:23 +02:00
parent c5733897ea
commit 1015e9e18f
123 changed files with 28542 additions and 1030 deletions

View File

@ -0,0 +1,53 @@
import type { CsoundReference } from './types'
// Instrument Control:Conditional Values
export const instrumentControlConditionalValues: CsoundReference[] = [
{
name: 'equals',
type: 'opcode',
category: 'Instrument Control:Conditional Values',
description: 'Compares two values for equality.',
example: '--8<-- "examples/equals.csd"',
seeAlso: ['Conditional Values']
},
{
name: 'greaterequal',
type: 'opcode',
category: 'Instrument Control:Conditional Values',
description: 'Determines if one value is greater than or equal to another.',
example: '--8<-- "examples/greaterequal.csd"',
seeAlso: ['Conditional Values']
},
{
name: 'greaterthan',
type: 'opcode',
category: 'Instrument Control:Conditional Values',
description: 'Determines if one value is greater than another.',
example: '--8<-- "examples/greaterthan.csd"',
seeAlso: ['Conditional Values']
},
{
name: 'lessequal',
type: 'opcode',
category: 'Instrument Control:Conditional Values',
description: 'Determines if one value is less than or equal to another.',
example: '--8<-- "examples/lessequal.csd"',
seeAlso: ['Conditional Values']
},
{
name: 'lessthan',
type: 'opcode',
category: 'Instrument Control:Conditional Values',
description: 'Determines if one value is less than another.',
example: '--8<-- "examples/lessthan.csd"',
seeAlso: ['Conditional Values']
},
{
name: 'notequal',
type: 'opcode',
category: 'Instrument Control:Conditional Values',
description: 'Determines if one value is not equal to another.',
example: '--8<-- "examples/notequal.csd"',
seeAlso: ['Conditional Values']
},
]