Wiki

Clone wiki

symja_android_library / Symbols / Union

Union

Union(set1, set2)
get the union set from set1 and set2.

See:

Examples

>>> Union({1,2,3},{2,3,4})
{1,2,3,4}

Updated