Release calc version 2.11.0t10

This commit is contained in:
Landon Curt Noll
1999-11-11 05:15:39 -08:00
parent 86c8e6dcf1
commit 96c34adee3
283 changed files with 2380 additions and 3032 deletions

View File

@@ -12,14 +12,14 @@ TYPES
DESCRIPTION
This is analogous to the C operator sizeof for the value only.
It attempts to assess the number of bytes in memory used to store
a value and all of its components. Unlike memsize(x), this
a value and all of its components. Unlike memsize(x), this
builtin does not include the size of the overhead.
Unlike size(x), this builtin incldues the trailing \0 byte on the
end of strings.
For numeric values, sizeof(x) ignores the demoninator if 'x' is
an integer. For complex values, sizeof(x) ignores the imaginary
an integer. For complex values, sizeof(x) ignores the imaginary
part if 'x' is real. Because the 0, 1 and -1 numeric values are
shared static values, sizeof(x) reports such values as having
0 bytes of storage.