union

func union(l : list of set of Entity) -> set of Entity
Returns the union of a list of sets . For example:
  union([{1 2} {2 3}) = {1 2} + {2 3} = {1 2 3} 
  union([{1 2}]) = {1 2}
  union([]) = {}
See also: concat, prod, reduce, sum.
Herman Venter

This is Slim documentation as snarfed on 27 May 1999 by dB.