Search code examples
maxima

Create a %union into a list in maxima


The function to_poly_solve in maxima returns a %union but I want to work with a list.

How can %unions be turned into lists since listify doesn't work?


Solution

  • abc : %union([a = 2], [b = 3]);
    args(abc);