home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 3
/
TheARMClub_PDCD3.iso
/
hensa
/
programming
/
huprolog_1
/
Guide
/
Extras
/
union
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-12-10
|
238 b
|
12 lines
union([],Set,Set).
union([X|Set1],Set2,Union) :-
element(X,Set2),!,
union(Set1,Set2,Union).
union([X|Set1],Set2,[X|Union]) :-
union(Set1,Set2,Union).
element(X,[X|_]).
element(X,[_|Set]) :-
element(X,Set).