root/tags/lgt2210/library/SCRIPT

Revision 1460, 0.5 KB (checked in by pmoura, 4 years ago)

Updated release number to 2.21.0.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1=================================================================
2Logtalk - Object oriented extension to Prolog
3Release 2.21.0
4
5Copyright (c) 1998-2004 Paulo Moura.  All Rights Reserved.
6=================================================================
7
8
9| ?- meta::apply(current_object, [meta]).
10
11yes
12
13
14| ?- meta::succeeds(integer, [1, 2, 3]).
15
16yes
17
18
19| ?- meta::map(object_property, [meta, user], Out).
20
21Out = [static,built_in] ? ;
22
23Out = [static,static] ? ;
24
25no
26
27
28| ?- meta::filter(integer, [1, a, X, b(_), 4, 7.8, 'AAA'], Integers).
29
30Integers = [1,4]
31
32yes
Note: See TracBrowser for help on using the browser.