:test/:test-not mutually exclusive; implicit blocks where applicable; minor fixes...
[clqr.git] / clqr-numbers.tex
blobdf7d345fe3e836c8dcad5a416d167eea38287812
1 % Copyright (C) 2008 Bert Burgemeister
3 % Permission is granted to copy, distribute and/or modify this
4 % document under the terms of the GNU Free Documentation License,
5 % Version 1.2 or any later version published by the Free Software
6 % Foundation; with no Invariant Sections, no Front-Cover Texts and
7 % no Back-Cover Texts. For details see file COPYING.
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11 \section{Numbers}
12 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
15 \subsection{Predicates}
16 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
18 \begin{LIST}{1cm}
20 \IT{\arrGOO{(\FU{\boldmath$=$}\RP{\VAR{
21 number}})\\
22 (\FU{\boldmath$/=$}\RP{\VAR{ number}})}{.}}
24 \index{=}%
25 \index{/=}%
26 \retval{\T} if all \VAR{number}s, or
27 none, respectively, are equal in value.
30 \IT{\arrGOO{(\FU{\boldmath$>$}\RP{\VAR{
31 number}})\\(\FU{\boldmath$>=$}\RP{\VAR{
32 number}})\\(\FU{\boldmath$<$}\RP{\VAR{
33 number}})\\(\FU{\boldmath$<=$}\RP{\VAR{ number}})}{.}}
35 \index{>@$>$}%
36 \index{>=@$>=$}%
37 \index{<@$<$}%
38 \index{<=@$<=$}%
39 Return \retval{\T} if \VAR{number}s are
40 monotonically decreasing, monotonically non-increasing,
41 monotonically increasing, or monotonically non-decreasing, respectively.
44 \IT{\arrGOO{(\FU*{MINUSP} \VAR{ a})\\
45 (\FU*{ZEROP} \VAR{ a})\\
46 (\FU*{PLUSP}
47 \VAR{ a})}{.}}
49 Return \retval{\T} if $a < 0$, $a = 0$, or $a > 0$, respectively.
52 \IT{\arrGOO{(\FU*{EVENP } \VAR{integer})\\
53 (\FU*{ODDP } \VAR{integer})}{.}}
55 Return \retval{\T} if \VAR{integer} is even or odd, respectively.
58 \IT{\arrGOO{(\FU*{NUMBERP} \VAR{ foo})\\
59 (\FU*{REALP} \VAR{ foo})\\
60 (\FU*{RATIONALP} \VAR{ foo})\\
61 (\FU*{FLOATP} \VAR{ foo})\\
62 (\FU*{INTEGERP} \VAR{ foo})\\
63 (\FU*{COMPLEXP} \VAR{ foo})\\
64 (\FU*{RANDOM-STATE-P} \VAR{ foo})
65 }{.}}
67 \retval{\T} if \VAR{foo} is of
68 indicated type.
71 \IT{(\FU*{LOGBITP} \VAR{i} \VAR{integer})}
73 \retval{\T} if zero-indexed \VAR{i}th bit of \VAR{integer} is set.
77 \end{LIST}
79 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
80 \subsection[Numeric~Functns]{Numeric Functions}
81 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
83 \begin{LIST}{1cm}
85 \IT{\arrGOO{(\FU*{+} \OPn{\VAR{ a}\DF{\LIT{0}}})\\
86 (\FU*{\A} \OPn{\VAR{ a}\DF{\LIT{1}}})}{.}}
88 Return \retval{$\sum{a}$} or \retval{$\prod{a}$}, respectively.
91 \IT{\arrGOO{(\FU*{--} \VAR{ a}\OPn{\VAR{ b}})\\
92 (\FU*{/} \VAR{ a}
93 \OPn{\VAR{ b}})}{.}}
95 Return \retval{$a-\sum{b}$} or \retval{$a/\prod{b}$}, respectively. Without any
96 \VAR{b}s, return \retval{$-a$} or \retval{$1/a$}, respectively.
99 \IT{\arrGOO{(\FU*{1+} \VAR{ a})\\(\FU*{1--} \VAR{ a})}{.}}
100 {Return \retval{$a+1$} or
101 \retval{$a-1$}, respectively.
104 \IT{(\xorGOO{\MC*{INCF}\\
105 \MC*{DECF}}{\}} \DES{\VAR{place}}
106 \Op{\VAR{delta}\DF{\LIT{1}}})}
108 Increment or
109 decrement \VAR{place} by \VAR{delta} returning \retval{new value}.
112 \IT{(\FU*{ABS} \VAR{n})}
114 Return \retval{$|n|$}.
117 \IT{\arrGOO{%
118 (\FU*{EXP } \VAR{p})\\
119 (\FU*{EXPT } \VAR{b } \VAR{p})}{.}}
121 Return \retval{$\mbox{e}^p$} or \retval{$b^p$}, respectively.
124 \IT{(\FU*{LOG} \VAR{a} \Op{\VAR{b}})}
126 Return \retval{$\log_b a$} or,
127 without \VAR{b}, \retval{$\ln a$}.
130 \IT{\arrGOO{(\FU*{SQRT} \VAR{ n})\\
131 (\FU*{ISQRT} \VAR{ n})}{.}}
133 \retval{$\sqrt{n}$} in complex or natural numbers, respectively.
136 \IT{\arrGOO{(\FU*{LCM} \OPn{\VAR{ integer}}\DF{\LIT{1}})\\
137 (\FU*{GCD} \OPn{\VAR{ integer}})}{.}}
139 \retval{Least common multiple} or \retval{greatest common
140 de\-no\-mi\-na\-tor}, respectively, of \VAR{integer}s. (\kwd{gcd})
141 returns \retval{0}.
144 \IT{\CNS*{PI}}
146 \kwd{long-float} approximation of $\pi$, Ludolph's number.
149 \IT{\arrGOO{(\FU*{SIN} \VAR{ a})\\
150 (\FU*{COS} \VAR{ a})\\
151 (\FU*{TAN} \VAR{ a})}{.}}
153 \retval{$\sin a$}, \retval{$\cos
154 a$}, or \retval{$\tan a$}, respectively. (\VAR{a} in radians.)
157 \IT{\arrGOO{(\FU*{ASIN} \VAR{ a})\\
158 (\FU*{ACOS} \VAR{ a})}{.}}
160 \retval{$\arcsin a$} or \retval{$\arccos
161 a$}, respectively, in radians.
164 \IT{(\FU*{ATAN} \VAR{a} \Op{\VAR{b}\DF{\LIT{1}}})}
166 \retval{$\arctan \frac{a}{b}$} in radians.
169 \IT{\arrGOO{(\FU*{SINH} \VAR{ a})\\(\FU*{COSH} \VAR{ a})\\(\FU*{TANH}
170 \VAR{ a})}{.}}
172 \retval{$\sinh a$}, \retval{$\cosh
173 a$}, or \retval{$\tanh a$}, respectively.
176 \IT{\arrGOO{(\FU*{ASINH} \VAR{ a})\\
177 (\FU*{ACOSH} \VAR{ a})
178 \\(\FU*{ATANH} \VAR{ a})}{.}}
180 \retval{$\operatorname{asinh} a$}, \retval{$\operatorname{acosh}
181 a$}, or \retval{$\operatorname{atanh} a$}, respectively.
184 \IT{(\FU*{CIS} \VAR{a})}
186 Return
187 \retval{$\operatorname{e}^{\operatorname{i} a}$} $=$ \retval{$\cos a +
188 \operatorname{i}\sin a$}.
191 \IT{(\FU*{CONJUGATE} \VAR{a})}
192 {Return complex \retval{conjugate of \VAR{a}}.
195 \IT{\arrGOO{(\FU*{NUMERATOR} \VAR{ rational})\\
196 (\FU*{DENOMINATOR} \VAR{ rational})}{.}}
198 \retval{Numerator} or \retval{denominator}, respectively, of
199 \VAR{rational}'s canonical form.
202 \IT{\arrGOO{(\FU*{REALPART} \VAR{ number})\\
203 (\FU*{IMAGPART} \VAR{ number})}{.}}
205 Return \retval{real part} or \retval{imaginary part}, respectively, of \VAR{number}.
208 \IT{\arrGOO{(\FU*{MAX } \RP{\VAR{num}})\\
209 (\FU*{MIN } \RP{\VAR{num}})}{.}}
211 Return \retval{greatest} or \retval{least}, respectively, of \VAR{num}s.
214 \IT{(\xorGOO{%
215 \Goo{\FU*{FLOOR}\XOR\FU*{FFLOOR}}\\
216 \Goo{\FU*{CEILING}\XOR\FU*{FCEILING}}\\
217 \Goo{\FU*{TRUNCATE}\XOR\FU*{FTRUNCATE}}\\
218 \Goo{\FU*{ROUND}\XOR\FU*{FROUND}}}{\}}
219 \VAR{n} \Op{\VAR{d}\DF{\LIT{1}}})}
221 Return \retval{$n/d$} (\kwd{integer} or \kwd{float}, respectively) truncated
222 towards $-\infty$, $+\infty$, $0$, or rounded, respectively; and \retvalii{re\-main\-der}.
225 \IT{(\xorGOO{\FU*{MOD}\\
226 \FU*{REM}}{\}} \VAR{n} \Op{\VAR{d}\DF{\LIT{1}}})}
227 {Same as \FU{floor} or
228 \FU{truncate}, respectively, but return \retval{re\-main\-der} only.
231 \IT{(\FU*{RANDOM} \VAR{limit} \Op{\VAR{state}\DF{\V{\A random-state}}})}
233 Return non-negative \retval{random number} less than \VAR{limit},
234 and of the same type.
237 \IT{(\FU*{MAKE-RANDOM-STATE} \OP{\Goo{\VAR{state}\XOR\NIL\XOR\T}\DF{\NIL}})}
239 \retval{Copy} of \kwd{random-state} object \VAR{state} or of
240 the current random state; or a randomly initialized fresh \retval{random
241 state}.
244 \IT{\V*{\A random-state\A}}
246 Current random state.
249 \IT{(\FU*{FLOAT-SIGN} \VAR{num-a} \Op{\VAR{num-b}\DF{\LIT{1}}})}
251 \retval{\VAR{num-b}} with the sign of \VAR{num-a}.
254 \IT{(\FU*{SIGNUM} \VAR{n})}
255 {\retval{Number} of magnitude 1
256 representing sign or phase of \VAR{n}.
259 \IT{(\FU*{COMPLEX} \VAR{real} \Op{\VAR{imag}\DF{\LIT{0}}})}
260 {Make a \retval{complex number}.
263 \IT{(\FU*{PHASE} \VAR{number})}
264 {\retval{Angle} of \VAR{number}'s polar representation.
267 \IT{\arrGOO{(\FU*{RATIONAL} \VAR{ real})\\
268 (\FU*{RATIONALIZE} \VAR{ real})}{.}}
270 Convert \VAR{real} to \retval{rational}. Assume complete/limited accuracy for \VAR{real}.
273 \IT{(\FU*{FLOAT} \VAR{real}
274 \Op{\VAR{prototype}\DF{\kwd{single-float}}})}
276 Convert \VAR{real} into \retval{float} with type of \VAR{prototype}.
279 \end{LIST}
282 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
283 \subsection{Logic Functions}
284 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
285 \label{section:Logic Functions}
286 Negative integers are used in
287 two's complement representation.
289 \begin{LIST}{1cm}
291 \IT{(\FU*{BOOLE} \VAR{operation} \VAR{int-a} \VAR{int-b})}
293 Return
294 \retval{value} of bit-wise logical \VAR{operation}. \VAR{operation}s
298 \begin{LIST}{.5cm}
299 \IT{\CNS*{BOOLE-1}\qquad\qquad} {\retval{\VAR{int-a}}.}
300 \IT{\CNS*{BOOLE-2}\qquad\qquad} {\retval{\VAR{int-b}}.}
301 \IT{\CNS*{BOOLE-C1}\qquad\qquad} {\retval{$\lnot\text{\VAR{int-a}}$}.}
302 \IT{\CNS*{BOOLE-C2}\qquad\qquad} {\retval{$\lnot\text{\VAR{int-b}}$}.}
303 \IT{\CNS*{BOOLE-SET}} {\retval{All bits set}.}
304 \IT{\CNS*{BOOLE-CLR}} {\retval{All bits zero}.}
305 \IT{\CNS*{BOOLE-EQV}} {\retval{$\text{\VAR{int-a}} \equiv \text{\VAR{int-b}}$}.}
306 \IT{\CNS*{BOOLE-AND}} {\retval{$\text{\VAR{int-a}}\land\text{\VAR{int-b}}$}.}
307 \IT{\CNS*{BOOLE-ANDC1}} {\retval{$\lnot \text{\VAR{int-a}} \land \text{\VAR{int-b}}$}.}
308 \IT{\CNS*{BOOLE-ANDC2}} {\retval{$\text{\VAR{int-a}} \land \lnot\text{\VAR{int-b}}$}.}
309 \IT{\CNS*{BOOLE-NAND}} {\retval{$\lnot(\text{\VAR{int-a}} \land \text{\VAR{int-b}})$}.}
310 \IT{\CNS*{BOOLE-IOR}} {\retval{$\text{\VAR{int-a}} \lor \text{\VAR{int-b}}$}.}
311 \IT{\CNS*{BOOLE-ORC1}} {\retval{$\lnot \text{\VAR{int-a}} \lor \text{\VAR{int-b}}$}.}
312 \IT{\CNS*{BOOLE-ORC2}} {\retval{$\text{\VAR{int-a}} \lor \lnot\text{\VAR{int-b}}$}.}
313 \IT{\CNS*{BOOLE-XOR}} {\retval{$\lnot(\text{\VAR{int-a}} \equiv \text{\VAR{int-b}})$}.}
314 \IT{\CNS*{BOOLE-NOR}} {\retval{$\lnot(\text{\VAR{int-a}} \lor \text{\VAR{int-b}})$}.}
315 \end{LIST}
317 \IT{(\FU*{LOGNOT}\VAR{ integer})}
319 \retval{$\lnot\text{\VAR{integer}}$}.
322 \IT{\arrGOO{(\FU*{LOGEQV} \OPn{\VAR{ integer}})\\
323 (\FU*{LOGAND} \OPn{\VAR{ integer}})}{.}}
325 Return \retval{value of exclusive-nored or anded \VAR{integer}s},
326 respectively. Without any \VAR{integer}, return \retval{$-1$}.
329 \IT{(\FU*{LOGANDC1} \VAR{ int-a} \VAR{ int-b})}
331 \retval{$\lnot \text{\VAR{int-a}} \land \text{\VAR{int-b}}$}.
334 \IT{(\FU*{LOGANDC2} \VAR{ int-a} \VAR{ int-b})}
336 \retval{$\text{\VAR{int-a}} \land \lnot\text{\VAR{int-b}}$}.
339 \IT{(\FU*{LOGNAND} \VAR{ int-a} \VAR{ int-b})}
341 \retval{$\lnot(\text{\VAR{int-a}} \land \text{\VAR{int-b}})$}.
344 \IT{\arrGOO{(\FU*{LOGXOR} \OPn{\VAR{ integer}})\\
345 (\FU*{LOGIOR} \OPn{\VAR{ integer}})}{.}}
347 Return \retval{value of exclusive-ored or ored \VAR{integer}s},
348 respectively. Without any \VAR{integer}, return \retval{0}.
351 \IT{(\FU*{LOGORC1} \VAR{ int-a} \VAR{ int-b})}
353 \retval{$\lnot \text{\VAR{int-a}} \lor \text{\VAR{int-b}}$}.
356 \IT{(\FU*{LOGORC2} \VAR{ int-a} \VAR{ int-b})}
358 \retval{$\text{\VAR{int-a}} \lor \lnot\text{\VAR{int-b}}$}.
361 \IT{(\FU*{LOGNOR} \VAR{ int-a} \VAR{ int-b})}
363 \retval{$\lnot(\text{\VAR{int-a}} \lor \text{\VAR{int-b}})$}.
366 \IT{(\FU*{LOGTEST} \VAR{int-a} \VAR{int-b})}
367 {Return \retval{\T} if
368 there is any bit set in \VAR{int-a} which is set in \VAR{int-b} as well.
371 \IT{(\FU*{LOGCOUNT} \VAR{integer})}
373 \retval{Number of bits} set
374 in \VAR{integer}.
377 \IT{(\FU*{ASH} \VAR{integer} \VAR{count})}
379 Return copy of \retval{\VAR{integer}} arithmetically shifted left by
380 \VAR{count} adding zeros
381 at the right, or, for $\VAR{count}<0$, shifted right discarding
382 bits.
385 \IT{(\FU*{MASK-FIELD} \VAR{byte-spec} \VAR{integer})}
387 Return copy of \retval{\VAR{integer}} with all bits unset but those denoted by
388 \VAR{byte-spec}. \kwd{setf}able.
392 \end{LIST}
394 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
395 \subsection{Integer Functions}
396 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
397 \begin{LIST}{1cm}
399 \IT{(\FU*{INTEGER-LENGTH} \VAR{integer})}
401 \retval{Number of bits} necessary to represent \VAR{integer}.
404 \IT{(\FU*{LDB-TEST} \VAR{byte-spec} \VAR{integer})}
406 Return \retval{\T} if any bit specified by \VAR{byte-spec} in
407 \VAR{integer} is set.
410 \IT{(\FU*{LDB} \VAR{byte-spec} \VAR{integer})}
412 Extract \retval{byte} denoted by \VAR{byte-spec} from
413 \VAR{integer}. \kwd{setf}able.
416 \IT{(\FU*{BYTE} \VAR{size} \VAR{position})}
418 \retval{Byte specifier} for a byte of \VAR{size} bits starting at a
419 weight of $2^{\VAR{position}}$.
422 \IT{\arrGOO{(\FU*{BYTE-SIZE} \VAR{ byte-spec})\\
423 (\FU*{BYTE-POSITION} \VAR{ byte-spec})}{.}}
425 \retval{Size} or \retval{position}, respectively, of \VAR{byte-spec}.
428 \IT{(\xorGOO{\FU*{DEPOSIT-FIELD}\\
429 \FU*{DPB}}{\}}
430 \VAR{int-a} \VAR{byte-spec} \VAR{int-b})}
432 Return \retval{\VAR{int-b}} with bits denoted by \VAR{byte-spec} replaced
433 by corresponding bits of \VAR{int-a}, or by the low (\FU{byte-size}
434 \VAR{byte-spec}) bits of \VAR{int-a}, respectively.
437 \end{LIST}
440 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
441 \subsection[Implementation- Dependent]{Implementation-Dependent}
442 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
443 \begin{LIST}{1cm}
445 \IT{\arrGOO{\CNS{SHORT-FLOAT}\\
446 \CNS{SINGLE-FLOAT}\\
447 \CNS{DOUBLE-FLOAT}\\
448 \CNS{LONG-FLOAT}}{\}}\kwd{-}%
449 \xorGOO{\kwd{EPSILON}\\
450 \kwd{NEGATIVE-EPSILON}}{.}}
452 \index{SHORT-FLOAT-EPSILON}%
453 \index{SINGLE-FLOAT-EPSILON}%
454 \index{DOUBLE-FLOAT-EPSILON}%
455 \index{LONG-FLOAT-EPSILON}%
456 \index{SHORT-FLOAT-NEGATIVE-EPSILON}%
457 \index{SINGLE-FLOAT-NEGATIVE-EPSILON}%
458 \index{DOUBLE-FLOAT-NEGATIVE-EPSILON}%
459 \index{LONG-FLOAT-NEGATIVE-EPSILON}%
460 Smallest possible number making a difference when added or subtracted, respectively.
463 \IT{\arrGOO{%
464 \CNS{LEAST-NEGATIVE}\\
465 \CNS{LEAST-NEGATIVE-NORMALIZED}\\
466 \CNS{LEAST-POSITIVE}\\
467 \CNS{LEAST-POSITIVE-NORMALIZED}}{\}}%
468 \kwd{-}%
469 \xorGOO{%
470 \kwd{SHORT-FLOAT}\\
471 \kwd{SINGLE-FLOAT}\\
472 \kwd{DOUBLE-FLOAT}\\
473 \kwd{LONG-FLOAT}}{.}}
475 \index{LEAST-NEGATIVE-SHORT-FLOAT}%
476 \index{LEAST-NEGATIVE-NORMALIZED-SHORT-FLOAT}%
477 \index{LEAST-NEGATIVE-SINGLE-FLOAT}%
478 \index{LEAST-NEGATIVE-NORMALIZED-SINGLE-FLOAT}%
479 \index{LEAST-NEGATIVE-DOUBLE-FLOAT}%
480 \index{LEAST-NEGATIVE-NORMALIZED-DOUBLE-FLOAT}%
481 \index{LEAST-NEGATIVE-LONG-FLOAT}%
482 \index{LEAST-NEGATIVE-NORMALIZED-LONG-FLOAT}%
483 \index{LEAST-POSITIVE-SHORT-FLOAT}%
484 \index{LEAST-POSITIVE-NORMALIZED-SHORT-FLOAT}%
485 \index{LEAST-POSITIVE-SINGLE-FLOAT}%
486 \index{LEAST-POSITIVE-NORMALIZED-SINGLE-FLOAT}%
487 \index{LEAST-POSITIVE-DOUBLE-FLOAT}%
488 \index{LEAST-POSITIVE-NORMALIZED-DOUBLE-FLOAT}%
489 \index{LEAST-POSITIVE-LONG-FLOAT}%
490 \index{LEAST-POSITIVE-NORMALIZED-LONG-FLOAT}%
491 Available numbers closest to $-0$ or $+0$, respectively.
494 \IT{\arrGOO{\CNS{MOST-NEGATIVE}\\
495 \CNS{MOST-POSITIVE}}{\}}%
496 \kwd{-}%
497 \xorGOO{%
498 \kwd{SHORT-FLOAT}\\
499 \kwd{SINGLE-FLOAT}\\
500 \kwd{DOUBLE-FLOAT}\\
501 \kwd{LONG-FLOAT}\\
502 \kwd{FIXNUM}}{.}}
504 \index{MOST-NEGATIVE-DOUBLE-FLOAT}%
505 \index{MOST-NEGATIVE-LONG-FLOAT}%
506 \index{MOST-NEGATIVE-SHORT-FLOAT}%
507 \index{MOST-NEGATIVE-SINGLE-FLOAT}%
508 \index{MOST-NEGATIVE-FIXNUM}%
509 \index{MOST-POSITIVE-DOUBLE-FLOAT}%
510 \index{MOST-POSITIVE-LONG-FLOAT}%
511 \index{MOST-POSITIVE-SHORT-FLOAT}%
512 \index{MOST-POSITIVE-SINGLE-FLOAT}%
513 \index{MOST-POSITIVE-FIXNUM}%
514 Available numbers closest to $-\infty$ or $+\infty$, respectively.
517 \IT{\arrGOO{(\FU*{DECODE-FLOAT} \VAR{ n})\\
518 (\FU*{INTEGER-DECODE-FLOAT} \VAR{ n})}{.}}
520 Return \retval{significand}, \retvalii{exponent}, and
521 \retvaliii{sign} of \kwd{float} \VAR{n}.
524 \IT{(\FU*{SCALE-FLOAT} \VAR{n} \Op{\VAR{i}})}
526 With \VAR{n}'s radix $b$, return $n b^{i}$.
529 \IT{\arrGOO{
530 (\FU*{FLOAT-RADIX} \VAR{ n})\\
531 (\FU*{FLOAT-DIGITS} \VAR{ n})\\
532 (\FU*{FLOAT-PRECISION} \VAR{ n})}{.}}
534 \retval{Radix}, \retval{number of digits} in that radix, or
535 \retval{precision} in that radix, respectively, of float \VAR{n}.
538 \IT{(\FU*{UPGRADED-COMPLEX-PART-TYPE} \VAR{foo})}
539 {\retval{Type} of most specialized \kwd{complex} number able to hold
540 parts of type \VAR{foo}.
543 \end{LIST}
546 % LocalWords: de na der nored ored