|
Revision 2, 0.7 KB
(checked in by pmoura, 7 years ago)
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | :- initialization( |
|---|
| 3 | logtalk_load([ |
|---|
| 4 | datep, date, % dates |
|---|
| 5 | timep, time, |
|---|
| 6 | |
|---|
| 7 | event_handlersp, % events |
|---|
| 8 | event_registryp, event_registry, |
|---|
| 9 | before_event_registry, after_event_registry, |
|---|
| 10 | monitorp, monitor, |
|---|
| 11 | |
|---|
| 12 | debuggerp, % debugging |
|---|
| 13 | debugger, |
|---|
| 14 | |
|---|
| 15 | hierarchyp, % hierarchies |
|---|
| 16 | proto_hierarchyp, proto_hierarchy, |
|---|
| 17 | class_hierarchyp, class_hierarchy, |
|---|
| 18 | |
|---|
| 19 | metap, meta, % metapredicates |
|---|
| 20 | loopp, loop, |
|---|
| 21 | |
|---|
| 22 | randomp, % random |
|---|
| 23 | random, |
|---|
| 24 | |
|---|
| 25 | termp, term, % types |
|---|
| 26 | atomic, |
|---|
| 27 | atom, callable, |
|---|
| 28 | characterp, character, |
|---|
| 29 | number, float, integer, natural, |
|---|
| 30 | compound, |
|---|
| 31 | listp, list, difflist, |
|---|
| 32 | numberlistp, numberlist, |
|---|
| 33 | varlist, |
|---|
| 34 | queuep, queue, |
|---|
| 35 | dictionaryp, bintree, |
|---|
| 36 | setp, set, |
|---|
| 37 | comparingp])). |
|---|
| 38 | |
|---|