Csound Csound-dev Csound-tekno Search About

UDO with no outputs?

Date2016-02-15 16:13
FromRory Walsh
SubjectUDO 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

Date2016-02-15 16:42
FromSteven Yi
SubjectRe: 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  wrote:
> 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

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

Date2016-02-15 16:55
FromRory Walsh
SubjectRe: 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.

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 <rorywalsh@ear.ie> wrote:
> 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

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

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