Files
oldboy/src/lib/csound-reference/instrument-control-conditional-values.ts
2025-10-15 15:05:23 +02:00

54 lines
1.6 KiB
TypeScript

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']
},
]