-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2013-02-26 02:17, Jonathan Wilkes wrote:
Seems like for any object that doesn't have a bang method nor list method, an empty list silently gets discarded.
[...]
Is there a way to fix this?
sure :-)
the default list method will try to do something clever with the empty list:
not the case for [sin])
(which is not the case for [sin])
distribute the atoms over the inlets. since there are 0 atoms, no inlet will receive any data.
so i think there are two things to fix:
attached are fixes for both problems (actually the 2nd patch makes [t a] output the message as it came in, rather than converting it to a list - so it also fixes the problem for numbers and symbols, not only for bangs) i rely on the community to test them thorougly :-)
there are still some weirdos though:
[float 42, list 666, list, foo( | [t s] | [print]
i wonder what the correct behaviour should actually be. intuitively i would say that for non-symbols, [t s] should output the selector as a symbol (if we don't want to introduce "%d" semantics which i would rather not for performance reasons). this would also make sense for anythings, where we currently get that weird "only convert 's' to 'b' or 'a'" (it's weird insofar as it takes some time to see what the 's' is referring to)
fgm,asdr IOhannes