EMA-XPS Online


FIND

FIND
====

syntax: (find <element> <sequence>)

This function searches for a certain element in a
sequence.
This function is not supported by babylon v3!

example:       >(setq list '(a b c b a a))
               (A B C B A A)
               >(find 'a list)
               A
               >(find 'd list)
               NIL


EMA-XPS Online