UDO with no outputs?
Date | 2016-02-15 16:13 |
From | Rory Walsh |
Subject | UDO with no outputs? |
I can't seem to find any documentation for UDOs with no outputs, Are these possible? I have a number of simple debug type UDO that don't need to return anything. It's not a big deal but would make the code more readable if they didn't have to have an output.
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
|
Date | 2016-02-15 16:42 |
From | Steven Yi |
Subject | Re: UDO with no outputs? |
Use the number 0 to denote no outputs or inputs. opcode my_print, 0, i ival xin print ival endop instr 1 my_print(4) endin The docs: http://csound.github.io/docs/manual/opcode.html mention: "A single 0 character can be used if there are no input arguments. " and "The format is the same as in the case of intypes. " Admittedly, the documentation could better illustrate this by adding 0 to the in and out type tables. On Mon, Feb 15, 2016 at 11:13 AM, Rory Walsh |
Date | 2016-02-15 16:55 |
From | Rory Walsh |
Subject | Re: UDO with no outputs? |
Ah thanks Steven. I didn't think to check intypes, and the tables didn't specify it. Thanks. On 15 February 2016 at 16:42, Steven Yi <stevenyi@gmail.com> wrote: Use the number 0 to denote no outputs or inputs. |