Go to the first, previous, next, last section, table of contents.
If NUMBER is zero, returns NUMBER; else returns (/ NUMBER (ABS NUMBER)).
Returns the bit-wise logical NOT of INTEGER.
Returns, as three values, the integer interpretation of significand F, the exponent E, and the sign S of the given float, so that E FLOAT = S * F * B where B = (FLOAT-RADIX FLOAT)
F is a non-negative integer, E is an integer, and S is either 1 or -1.
Returns T if NUMBER < 0; NIL otherwise.
Returns the logical OR of (LOGNOT INTEGER1) and INTEGER2.
Performs a bit-wise logical NAND on the elements of BIT-ARRAY1 and BIT-ARRAY2. Puts the results into a new bit array if RESULT-BIT-ARRAY is NIL, into BIT-ARRAY1 if RESULT-BIT-ARRAY is T, or into RESULT-BIT-ARRAY otherwise.
Performs the inverse of CHAR-INT. Equivalent to CODE-CHAR in GCL.
Returns the font, bits, and code attributes as a single non-negative integer. Equivalent to CHAR-CODE in GCL.
Returns T if no two of its arguments are numerically equal; NIL otherwise.
Returns T if at least one of the bits in the specified bytes of INTEGER is 1; NIL otherwise.
Converts NUMBER into rational accurately and returns it.
Returns the sine of RADIANS.
Returns as an integer the numerator of the given rational number.
Extracts the specified byte from INTEGER.
Syntax:
(incf place [delta])
Adds the number produced by DELTA (which defaults to 1) to the number in PLACE.
Returns the hyperbolic sine of NUMBER.
Returns the angle part of the polar representation of a complex number. For non-complex numbers, this is 0.
Returns an integer produced by performing the logical operation specified by OP on the two integers. OP must be the value of one of the following constants: BOOLE-CLR BOOLE-C1 BOOLE-XOR BOOLE-ANDC1 BOOLE-SET BOOLE-C2 BOOLE-EQV BOOLE-ANDC2 BOOLE-1 BOOLE-AND BOOLE-NAND BOOLE-ORC1 BOOLE-2 BOOLE-IOR BOOLE-NOR BOOLE-ORC2 See the variable docs of these constants for their operations.
Returns the logical OR of INTEGER1 and (LOGNOT INTEGER2).
Extracts the real part of NUMBER.
Values: (quotient remainder) Same as TRUNCATE, but returns first value as a float.
Returns T if X and Y are EQ, or if they are numbers of the same type with the same value, or if they are character objects that represent the same character. Returns NIL otherwise.
Returns the logarithm of NUMBER in the base BASE. BASE defaults to the base of natural logarithms.
Returns the bit-wise INCLUSIVE OR of its arguments.
Divides the first NUMBER by each of the subsequent NUMBERS. With one arg, returns the reciprocal of the number.
Returns NUMBER + 1.
Same as CEILING, but returns a float as the first value.
Performs a bit-wise logical ANDC1 on the elements of BIT-ARRAY1 and BIT-ARRAY2. Puts the results into a new bit array if RESULT-BIT-ARRAY is NIL, into BIT-ARRAY1 if RESULT-BIT-ARRAY is T, or into RESULT-BIT-ARRAY otherwise.
Returns the tangent of RADIANS.
Returns the hyperbolic tangent of NUMBER.
Returns the arc sine of NUMBER.
Returns a byte specifier. In GCL, a byte specifier is represented by a dotted pair (<size> . <position>).
Returns the hyperbolic arc sine of NUMBER.
Syntax:
(shiftf {place}+ newvalue)
Evaluates all PLACEs and NEWVALUE in turn, then assigns the value of each form to the PLACE on its left. Returns the original value of the leftmost form.
Returns an integer computed by replacing the specified byte of INTEGER with the specified byte of NEWBYTE.
Performs a bit-wise logical AND on the elements of BIT-ARRAY1 and BIT-ARRAY2. Puts the results into a new bit array if RESULT-BIT-ARRAY is NIL, into BIT-ARRAY1 if RESULT-BIT-ARRAY is T, or into RESULT-BIT-ARRAY otherwise.
Returns the complement of the logical AND of INTEGER1 and INTEGER2.
Returns the position part (in GCL, the cdr part) of the byte specifier.
Syntax:
(rotatef {place}*)
Evaluates PLACEs in turn, then assigns to each PLACE the value of the form to its right. The rightmost PLACE gets the value of the leftmost PLACE. Returns NIL always.
Performs a bit-wise logical ANDC2 on the elements of BIT-ARRAY1 and BIT-ARRAY2. Puts the results into a new bit array if RESULT-BIT-ARRAY is NIL, into BIT-ARRAY1 if RESULT-BIT-ARRAY is T, or into RESULT-BIT-ARRAY otherwise.
Values: (quotient remainder) Returns NUMBER/DIVISOR as an integer, rounded toward 0. The second returned value is the remainder.
Extracts and right-justifies the specified byte of INTEGER, and returns the result.
Returns the size part (in GCL, the car part) of the byte specifier.
Returns the second value of (TRUNCATE NUMBER DIVISOR).
Returns the least of its arguments.
Calculates e raised to the power NUMBER, where e is the base of natural logarithms.
Returns, as three values, the significand F, the exponent E, and the sign S of the given float, so that E FLOAT = S * F * B where B = (FLOAT-RADIX FLOAT)
S and F are floating-point numbers of the same float format as FLOAT, and E is an integer.
Same as ROUND, but returns first value as a float.
Returns the bit-wise EQUIVALENCE of its arguments.
Performs a bit-wise logical NOR on the elements of BIT-ARRAY1 and BIT-ARRAY2. Puts the results into a new bit array if RESULT-BIT-ARRAY is NIL, into BIT-ARRAY1 if RESULT-BIT-ARRAY is T, or into RESULT-BIT-ARRAY otherwise.
Returns the smallest integer not less than or NUMBER/DIVISOR. Returns the remainder as the second value.
Returns NUMBER - 1.
Returns T if arguments are in strictly non-decreasing order; NIL otherwise.
Extracts the imaginary part of NUMBER.
Returns T if X is an integer (fixnum or bignum); NIL otherwise.
Shifts INTEGER left by COUNT places. Shifts right if COUNT is negative.
Returns the least common multiple of the arguments.
Returns the cosine of RADIANS.
Syntax:
(decf place [delta])
Subtracts the number produced by DELTA (which defaults to 1) from the number in PLACE.
Returns the representation radix (or base) of the floating-point number.
Returns the hyperbolic arc tangent of NUMBER.
Returns T if X is a floating-point number; NIL otherwise.
Computes a hash code for OBJECT and returns it as an integer.
Returns the logical AND of (LOGNOT INTEGER1) and INTEGER2.
Returns T if X is a complex number; NIL otherwise.
Returns the greatest of its arguments.
Returns a floating-point number with the same sign as FLOAT1 and with the same absolute value as FLOAT2.
Returns the denominator of RATIONAL as an integer.
Converts a non-complex number to a floating-point number. If NUMBER is already a float, FLOAT simply returns NUMBER. Otherwise, the format of the returned float depends on OTHER; If OTHER is not provided, FLOAT returns a SINGLE-FLOAT. If OTHER is provided, the result is in the same float format as OTHER's.
Rounds NUMBER/DIVISOR to nearest integer. The second returned value is the remainder.
Returns the bit-wise AND of its arguments.
Returns the product of its arguments. With no args, returns 1.
Returns T if its arguments are in strictly increasing order; NIL otherwise.
Returns a complex number with the given real and imaginary parts.
Returns the logical AND of INTEGER1 and (LOGNOT INTEGER2).
Returns the number of significant bits in the absolute value of INTEGER.
Returns T if arguments are in strictly non-increasing order; NIL otherwise.
Returns the arc cosine of NUMBER.
Creates and returns a copy of the specified random state. If STATE is NIL, then the value of *RANDOM-STATE* is used. If STATE is T, then returns a random state object generated from the universal time.
Returns BASE-NUMBER raised to the power POWER-NUMBER.
Returns the principal square root of NUMBER.
Returns (* FLOAT (expt (float-radix FLOAT) INTEGER)).
Returns the hyperbolic arc cosine of NUMBER.
Same as FLOOR, but returns a float as the first value.
Returns the complement of the logical OR of INTEGER1 and INTEGER2.
Parses STRING for an integer and returns it.
Returns the sum of its arguments. With no args, returns 0.
Returns T if all of its arguments are numerically equal; NIL otherwise.
Returns T if X is any kind of number; NIL otherwise.
Returns T if LOGAND of INTEGER1 and INTEGER2 is not zero; NIL otherwise.
Returns T if X is a random-state object; NIL otherwise.
Returns the number of significant radix-B digits used to represent the significand F of the floating-point number, where B = (FLOAT-RADIX FLOAT).
Returns an integer computed by replacing the specified byte of INTEGER with NEWBYTE.
Returns the absolute value of NUMBER.
Returns the complex conjugate of NUMBER.
Returns e raised to i*RADIANS.
Returns T if INTEGER is odd; NIL otherwise.
Converts NUMBER into rational approximately and returns it.
Returns the greatest integer less than or equal to the square root of the given non-negative integer.
Returns the bit-wise EXCLUSIVE OR of its arguments.
Returns T if its arguments are in strictly decreasing order; NIL otherwise.
Returns T if the INDEX-th bit of INTEGER is 1.
If INTEGER is negative, returns the number of 0 bits. Otherwise, returns the number of 1 bits.
Returns the greatest common divisor of INTEGERs.
Returns T if X is an integer or a ratio; NIL otherwise.
Returns the second result of (FLOOR NUMBER DIVISOR).
Returns the largest integer not larger than the NUMBER divided by DIVISOR. The second returned value is (- NUMBER (* first-value DIVISOR)).
Returns T if NUMBER > 0; NIL otherwise.
Returns the number of radix-B digits used to represent the significand F of the floating-point number, where B = (FLOAT-RADIX FLOAT).
Generates a uniformly distributed pseudo-random number between zero (inclusive) and NUMBER (exclusive), by using the random state object STATE.
Go to the first, previous, next, last section, table of contents.