2013-11-26 09:40:00 +00:00
|
|
|
|
2014-04-09 12:39:29 +01:00
|
|
|
:- system_module( '$_lists', [], []).
|
|
|
|
|
2013-11-26 09:53:04 +00:00
|
|
|
:- '$set_yap_flags'(11,1). % source.
|
2013-11-26 09:40:00 +00:00
|
|
|
|
2010-06-17 00:23:03 +01:00
|
|
|
% memberchk(+Element, +Set)
|
|
|
|
% means the same thing, but may only be used to test whether a known
|
|
|
|
% Element occurs in a known Set. In return for this limited use, it
|
|
|
|
% is more efficient when it is applicable.
|
|
|
|
|
2014-09-11 20:06:57 +01:00
|
|
|
/** @pred memberchk(+ _Element_, + _Set_)
|
|
|
|
|
|
|
|
|
|
|
|
As member/2, but may only be used to test whether a known
|
|
|
|
_Element_ occurs in a known Set. In return for this limited use, it
|
|
|
|
is more efficient when it is applicable.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
2010-06-17 00:23:03 +01:00
|
|
|
lists:memberchk(X,[X|_]) :- !.
|
|
|
|
lists:memberchk(X,[_|L]) :-
|
|
|
|
lists:memberchk(X,L).
|
|
|
|
|
|
|
|
% member(?Element, ?Set)
|
|
|
|
% is true when Set is a list, and Element occurs in it. It may be used
|
|
|
|
% to test for an element or to enumerate all the elements by backtracking.
|
|
|
|
% Indeed, it may be used to generate the Set!
|
|
|
|
|
2014-09-11 20:06:57 +01:00
|
|
|
/** @pred member(? _Element_, ? _Set_)
|
|
|
|
|
|
|
|
|
|
|
|
True when _Set_ is a list, and _Element_ occurs in it. It may be used
|
|
|
|
to test for an element or to enumerate all the elements by backtracking.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
2010-06-17 00:23:03 +01:00
|
|
|
lists:member(X,[X|_]).
|
|
|
|
lists:member(X,[_|L]) :-
|
|
|
|
lists:member(X,L).
|
|
|
|
|
2014-09-11 20:06:57 +01:00
|
|
|
/** @pred append(? _List1_,? _List2_,? _List3_)
|
|
|
|
|
|
|
|
|
|
|
|
Succeeds when _List3_ unifies with the concatenation of _List1_
|
|
|
|
and _List2_. The predicate can be used with any instantiation
|
|
|
|
pattern (even three variables).
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
2010-06-17 00:23:03 +01:00
|
|
|
lists:append([], L, L).
|
|
|
|
lists:append([H|T], L, [H|R]) :-
|
|
|
|
lists:append(T, L, R).
|
|
|
|
|
|
|
|
|
2013-11-26 09:53:04 +00:00
|
|
|
:- '$set_yap_flags'(11,0). % :- no_source.
|
2010-06-17 00:23:03 +01:00
|
|
|
|
2014-04-09 12:39:29 +01:00
|
|
|
% lists:delete(List, Elem, Residue)
|
|
|
|
% is true when List is a list, in which Elem may or may not occur, and
|
|
|
|
% Residue is a copy of List with all elements identical to Elem lists:deleted.
|
|
|
|
|
2014-09-11 20:06:57 +01:00
|
|
|
/** @pred delete(+ _List_, ? _Element_, ? _Residue_)
|
|
|
|
|
|
|
|
|
|
|
|
True when _List_ is a list, in which _Element_ may or may not
|
|
|
|
occur, and _Residue_ is a copy of _List_ with all elements
|
|
|
|
identical to _Element_ deleted.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
2014-04-09 12:39:29 +01:00
|
|
|
lists:delete([], _, []).
|
|
|
|
lists:delete([Head|List], Elem, Residue) :-
|
|
|
|
Head == Elem, !,
|
|
|
|
lists:delete(List, Elem, Residue).
|
|
|
|
lists:delete([Head|List], Elem, [Head|Residue]) :-
|
|
|
|
lists:delete(List, Elem, Residue).
|
|
|
|
|
2014-10-03 08:50:15 +01:00
|
|
|
:- '$set_yap_flags'(11,0). % disable source.
|
2014-04-09 12:39:29 +01:00
|
|
|
|