On Sat, Aug 13, 2011 at 1:02 PM, Aaron Meurer <[email protected]> wrote: > Well, there are some advantages to having your objects in a Tuple. > The methods/properties .has, .subs, .match, .free_symbols, .args, > .find, .replace, .is_Anything, and many others all work on it, because > it's Basic.
So instead of doing `any(i.has(x) for i in iterable)` one can do `Tuple_iterable.has(x)`. Tuple also sympifies its arguments, so that's nice, too. -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
