comparison doc/lispref/numbers.texi @ 109267:71353caf35e3

Untabify doc/lispref/*.texi. * abbrevs.texi, commands.texi, compile.texi, debugging.texi: * display.texi, edebug.texi, elisp.texi, eval.texi, files.texi: * frames.texi, functions.texi, internals.texi, keymaps.texi: * loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi: * searching.texi, sequences.texi, strings.texi, syntax.texi: * text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi: Untabify Texinfo files.
author Glenn Morris <rgm@gnu.org>
date Tue, 22 Jun 2010 20:36:56 -0700
parents 11f018190d5c
children 70ad6f6f15c7
comparison
equal deleted inserted replaced
109266:9df40307a957 109267:71353caf35e3
19 power, and that is multiplied by 1.5. Floating point values are not 19 power, and that is multiplied by 1.5. Floating point values are not
20 exact; they have a fixed, limited amount of precision. 20 exact; they have a fixed, limited amount of precision.
21 21
22 @menu 22 @menu
23 * Integer Basics:: Representation and range of integers. 23 * Integer Basics:: Representation and range of integers.
24 * Float Basics:: Representation and range of floating point. 24 * Float Basics:: Representation and range of floating point.
25 * Predicates on Numbers:: Testing for numbers. 25 * Predicates on Numbers:: Testing for numbers.
26 * Comparison of Numbers:: Equality and inequality predicates. 26 * Comparison of Numbers:: Equality and inequality predicates.
27 * Numeric Conversions:: Converting float to integer and vice versa. 27 * Numeric Conversions:: Converting float to integer and vice versa.
28 * Arithmetic Operations:: How to add, subtract, multiply and divide. 28 * Arithmetic Operations:: How to add, subtract, multiply and divide.
29 * Rounding Operations:: Explicitly rounding floating point numbers. 29 * Rounding Operations:: Explicitly rounding floating point numbers.
30 * Bitwise Operations:: Logical and, or, not, shifting. 30 * Bitwise Operations:: Logical and, or, not, shifting.
31 * Math Functions:: Trig, exponential and logarithmic functions. 31 * Math Functions:: Trig, exponential and logarithmic functions.
32 * Random Numbers:: Obtaining random integers, predictable or not. 32 * Random Numbers:: Obtaining random integers, predictable or not.