Logtalk 2.24.0 files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1282 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2005-04-22 23:57:45 +00:00
parent 08efcbeb64
commit c2e03a81b9
195 changed files with 4005 additions and 1219 deletions

View File

@@ -8,28 +8,28 @@
:- mode(Functor(), Solutions).
:- info(Functor/1, [
comment is '',
argnames is ['Arg']]).
arguments is ['Arg'-'Desc']]).
:- private(Functor/2).
:- mode(Functor(, ), Solutions).
:- info(Functor/2, [
comment is '',
argnames is ['Arg1', 'Arg2']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2']]).
:- private(Functor/3).
:- mode(Functor(, , ), Solutions).
:- info(Functor/3, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3']]).
:- private(Functor/4).
:- mode(Functor(, , , ), Solutions).
:- info(Functor/4, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3', 'Arg4']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3', 'Arg4'-'Desc4']]).
:- private(Functor/5).
:- mode(Functor(, , , , ), Solutions).
:- info(Functor/5, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3', 'Arg4', 'Arg5']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3', 'Arg4'-'Desc4', 'Arg5'-'Desc5']]).

View File

@@ -8,28 +8,28 @@
:- mode(Functor(), Solutions).
:- info(Functor/1, [
comment is '',
argnames is ['Arg']]).
arguments is ['Arg'-'Desc']]).
:- protected(Functor/2).
:- mode(Functor(, ), Solutions).
:- info(Functor/2, [
comment is '',
argnames is ['Arg1', 'Arg2']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2']]).
:- protected(Functor/3).
:- mode(Functor(, , ), Solutions).
:- info(Functor/3, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3']]).
:- protected(Functor/4).
:- mode(Functor(, , , ), Solutions).
:- info(Functor/4, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3', 'Arg4']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3', 'Arg4'-'Desc4']]).
:- protected(Functor/5).
:- mode(Functor(, , , , ), Solutions).
:- info(Functor/5, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3', 'Arg4', 'Arg5']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3', 'Arg4'-'Desc4', 'Arg5'-'Desc5']]).

View File

@@ -8,28 +8,28 @@
:- mode(Functor(), Solutions).
:- info(Functor/1, [
comment is '',
argnames is ['Arg']]).
arguments is ['Arg'-'Desc']]).
:- public(Functor/2).
:- mode(Functor(, ), Solutions).
:- info(Functor/2, [
comment is '',
argnames is ['Arg1', 'Arg2']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2']]).
:- public(Functor/3).
:- mode(Functor(, , ), Solutions).
:- info(Functor/3, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3']]).
:- public(Functor/4).
:- mode(Functor(, , , ), Solutions).
:- info(Functor/4, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3', 'Arg4']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3', 'Arg4'-'Desc4']]).
:- public(Functor/5).
:- mode(Functor(, , , , ), Solutions).
:- info(Functor/5, [
comment is '',
argnames is ['Arg1', 'Arg2', 'Arg3', 'Arg4', 'Arg5']]).
arguments is ['Arg1'-'Desc1', 'Arg2'-'Desc2', 'Arg3'-'Desc3', 'Arg4'-'Desc4', 'Arg5'-'Desc5']]).

View File

@@ -1,6 +1,6 @@
=================================================================
Logtalk - Object oriented extension to Prolog
Release 2.23.1
Release 2.24.0
Copyright (c) 1998-2005 Paulo Moura. All Rights Reserved.
=================================================================

View File

@@ -35,6 +35,7 @@
);
AltKeywords = (
"alias",
"encoding",
"initialization",
"info",
"mode",