1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book [
<!ENTITY % eclent SYSTEM "ecl.ent">
%eclent;
]>
<book xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<chapter xml:id="ansi.packages">
<title>Packages</title>
<table xml:id="table.all-packages">
<title>ECL packages</title>
<tgroup cols="3">
<thead>
<row>
<entry>Name</entry>
<entry>Nickname</entry>
<entry>In module</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><package>COMMON-LISP</package></entry>
<entry><package>CL</package>, <package>LISP</package></entry>
<entry>&ECL; core</entry>
<entry>Main &CommonLisp; package.</entry>
</row>
<row>
<entry><package>CLOS</package></entry>
<entry><package>MOP</package></entry>
<entry>&ECL; core</entry>
<entry>Symbols from the &AMOP;.</entry>
</row>
<row>
<entry><package>EXT</package></entry>
<entry></entry>
<entry>&ECL; core</entry>
<entry>&ECL; extensions to the language & library.</entry>
</row>
<row>
<entry><package>SYSTEM</package></entry>
<entry><package>SI</package>, <package>SYS</package></entry>
<entry>&ECL; core</entry>
<entry>Functions and variables internal to the implementation. Never to be used.</entry>
</row>
<row>
<entry><package>FFI</package></entry>
<entry><package></package></entry>
<entry><package>ECL core</package></entry>
<entry>Foreign function interface</entry>
</row>
<row>
<entry><package>CMP</package></entry>
<entry><package>C</package></entry>
<entry><package>CMP</package></entry>
<entry>The compiler</entry>
</row>
<row>
<entry><package>SB-BSD-SOCKETS</package></entry>
<entry></entry>
<entry><package>SOCKETS</package></entry>
<entry>Sockets library compatible with <acronym>SBCL</acronym>'s</entry>
</row>
<row>
<entry><package>SB-RT</package></entry>
<entry><package>RT</package>, <package>REGRESSION-TEST</package></entry>
<entry><package>RT</package></entry>
<entry>Test units (customized for &ECL;)</entry>
</row>
<row>
<entry><package>ASDF</package></entry>
<entry></entry>
<entry><package>ASDF</package></entry>
<entry>System definition file with &ECL; customizations.</entry>
</row>
</tbody>
</tgroup>
</table>
<para>In <xref linkend="table.all-packages"/> we list all packages
available in &ECL;. The nicknames are aliases for a package. Thus,
<symbol>system:symbol</symbol> may be written as
<symbol>sys:symbol</symbol> or <symbol>si:symbol</symbol>. The module
field explains which library provides what package. For instance, the
<package>ASDF</package> is obtained when loading the
<package>ASDF</package> library with <code>(require
'asdf)</code>.</para>
<xi:include href="ref_c_packages.xml" xpointer="ansi.packages.c-dict" xmlns:xi="http://www.w3.org/2001/XInclude"/>
</chapter>
</book>
|