| 287 | */ |
| 288 | |
| 289 | double CsoundChannelList::MinValue(int ndx) |
| 290 | { |
| 291 | controlChannelHints_t hints; |
| 292 | if (this->GetChannelMetaData(ndx, &hints) > 0) |
| 293 | return hints.min; |
| 294 | return 0.0; |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * Returns the maximum value set for the control channel at index 'ndx' |
nothing calls this directly
no test coverage detected