75392e54c7
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@757 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
36 lines
805 B
Plaintext
36 lines
805 B
Plaintext
|
|
:- private(Functor/0).
|
|
:- mode(Functor, Solutions).
|
|
:- info(Functor/0, [
|
|
comment is '']).
|
|
|
|
:- private(Functor/1).
|
|
:- mode(Functor(), Solutions).
|
|
:- info(Functor/1, [
|
|
comment is '',
|
|
argnames is ['Arg']]).
|
|
|
|
:- private(Functor/2).
|
|
:- mode(Functor(, ), Solutions).
|
|
:- info(Functor/2, [
|
|
comment is '',
|
|
argnames is ['Arg1', 'Arg2']]).
|
|
|
|
:- private(Functor/3).
|
|
:- mode(Functor(, , ), Solutions).
|
|
:- info(Functor/3, [
|
|
comment is '',
|
|
argnames is ['Arg1', 'Arg2', 'Arg3']]).
|
|
|
|
:- private(Functor/4).
|
|
:- mode(Functor(, , , ), Solutions).
|
|
:- info(Functor/4, [
|
|
comment is '',
|
|
argnames is ['Arg1', 'Arg2', 'Arg3', 'Arg4']]).
|
|
|
|
:- private(Functor/5).
|
|
:- mode(Functor(, , , , ), Solutions).
|
|
:- info(Functor/5, [
|
|
comment is '',
|
|
argnames is ['Arg1', 'Arg2', 'Arg3', 'Arg4', 'Arg5']]).
|