Package: alexandria
Function length=
Lambda List
length= (&rest sequences)
Details
Takes any number of sequences or integers in any order. Returns true iff the length of all the sequences and the integers are equal.
Hint: There is a compiler macro that expands into more efficient code if the first argument is a literal integer.
Hint: There is a compiler macro that expands into more efficient code if the first argument is a literal integer.
Examples
(length= 3 "abc" '(a b c)) => T