c2e03a81b9
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1282 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
36 lines
941 B
Plaintext
36 lines
941 B
Plaintext
|
|
:- protected(Functor/0).
|
|
:- mode(Functor, Solutions).
|
|
:- info(Functor/0, [
|
|
comment is '']).
|
|
|
|
:- protected(Functor/1).
|
|
:- mode(Functor(), Solutions).
|
|
:- info(Functor/1, [
|
|
comment is '',
|
|
arguments is ['Arg'-'Desc']]).
|
|
|
|
:- protected(Functor/2).
|
|
:- mode(Functor(, ), Solutions).
|
|
:- info(Functor/2, [
|
|
comment is '',
|
|
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2']]).
|
|
|
|
:- protected(Functor/3).
|
|
:- mode(Functor(, , ), Solutions).
|
|
:- info(Functor/3, [
|
|
comment is '',
|
|
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3']]).
|
|
|
|
:- protected(Functor/4).
|
|
:- mode(Functor(, , , ), Solutions).
|
|
:- info(Functor/4, [
|
|
comment is '',
|
|
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3', 'Arg4'-'Desc4']]).
|
|
|
|
:- protected(Functor/5).
|
|
:- mode(Functor(, , , , ), Solutions).
|
|
:- info(Functor/5, [
|
|
comment is '',
|
|
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3', 'Arg4'-'Desc4', 'Arg5'-'Desc5']]).
|