Re: [PD-dev] equivalent of Max attributes for optional keyword object args?

2021-09-24 Thread Iain Duncan
Thanks Christof. I will take a look at signumd! On Fri, Sep 24, 2021 at 9:04 AM Christof Ressi wrote: > Usually, we would use flags, e.g. in your case something like "-heap > ". > > [sigmund~] object, for example, takes a few flag arguments. You can take > it as a reference point. > > Christof

Re: [PD-dev] equivalent of Max attributes for optional keyword object args?

2021-09-24 Thread Christof Ressi
Usually, we would use flags, e.g. in your case something like "-heap ". [sigmund~] object, for example, takes a few flag arguments. You can take it as a reference point. Christof On 24.09.2021 17:33, Iain Duncan wrote: Hi folks, I want to add an optional argument for object creation time

[PD-dev] equivalent of Max attributes for optional keyword object args?

2021-09-24 Thread Iain Duncan
Hi folks, I want to add an optional argument for object creation time to Scheme for Pd to allow setting the starting heap size, which can dramatically lower garbage collector times. In Scheme for Max 0.3 I added the @heap attr. I'm not sure what the normal way to do this kind of thing is in Pd.