picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 137f217bb55e5d4199d3699326a072da594e96ed
parent aa0d748b83e65d23ebaefa294a3777c5e4529220
Author: Alexander Burger <abu@software-lab.de>
Date:   Mon, 14 May 2012 14:53:51 +0200

Minor: Updated comments
Diffstat:
Mdoc/refD.html | 24++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/doc/refD.html b/doc/refD.html @@ -384,18 +384,18 @@ href="refP.html#pool">pool</a></code>. <pre><code> (dbs - (1 +Role +User +Sal) # (1 . 128) - (2 +CuSu) # (2 . 256) - (1 +Item +Ord) # (3 . 128) - (0 +Pos) # (4 . 64) - (2 (+Role nm) (+User nm) (+Sal nm)) # (5 . 256) - (4 (+CuSu nr plz tel mob)) # (6 . 1024) - (4 (+CuSu nm)) # (7 . 1024) - (4 (+CuSu ort)) # (8 . 1024) - (4 (+Item nr sup pr)) # (9 . 1024) - (4 (+Item nm)) # (10 . 1024) - (4 (+Ord nr dat cus)) # (11 . 1024) - (4 (+Pos itm)) ) # (12 . 1024) + (3 +Role +User +Sal) # 512 Prevalent objects + (0 +Pos) # A:64 Tiny objects + (1 +Item +Ord) # B:128 Small objects + (2 +CuSu) # C:256 Normal objects + (2 (+Role nm) (+User nm) (+Sal nm)) # D:256 Small indexes + (4 (+CuSu nr plz tel mob)) # E:1024 Normal indexes + (4 (+CuSu nm)) # F:1024 + (4 (+CuSu ort)) # G:1024 + (4 (+Item nr sup pr)) # H:1024 + (4 (+Item nm)) # I:1024 + (4 (+Ord nr dat cus)) # J:1024 + (4 (+Pos itm)) ) # K:1024 : *Dbs -> (1 2 1 0 2 4 4 4 4 4 4 4)