Go to the first, previous, next, last section, table of contents.


equal

Function: equal { any any -> tOrNil }
file: 10-C-lists.muf
package: muf
status: alpha

The equal operator is defined by CommonLisp to be essentially an eql which also compares lists by value.

Stack:
[ 'a' 'b' ]l [ 'a' 'b' ]l =
Stack: nil
pop [ 'a' 'b' ]l [ 'a' 'b' ]l equal
Stack: t


Go to the first, previous, next, last section, table of contents.