« Return to Thread: tabbing glitch

Re: merging dictionaries

by james mccartney :: Rate this Message:

Reply to Author | View in Thread

you can use inheritance.

x = (a: 1, b: 2, c: 3);
y = (d: 7, e: 8, f: 9);
z = (parent: x, proto: y);
z.b.postln;
z.e.postln;


On Fri, Feb 22, 2008 at 6:57 PM,  <koonce@...> wrote:

>
>  What is the simplest way to merge IdentityDictionaries, with different
>  keys, into one?
>
>  Paul Koonce
>
>
>  _______________________________________________
>  sc-users mailing list
>  sc-users@...
>  http://lists.create.ucsb.edu/mailman/listinfo/sc-users
>



--
--- james mccartney
_______________________________________________
sc-users mailing list
sc-users@...
http://lists.create.ucsb.edu/mailman/listinfo/sc-users

 « Return to Thread: tabbing glitch