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/xcode/Logtalk/Protected predicate templates.lgt
pmoura c2e03a81b9 Logtalk 2.24.0 files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1282 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2005-04-22 23:57:45 +00:00

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