This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/wenv/pb/Logtalk/Private predicate templates.lgt
pmoura 75392e54c7 Logtalk 2.15.0 release files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@757 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2003-02-05 00:15:28 +00:00

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']]).