member takes as argument a value c and a list
(or a set) L.
member is a function that tests if c is an element of the
list L.
member returns 0 if c is not in L, or
a strictly positive integer which is
1 plus the index of the first occurrence of c in L.
Note the order of the arguments (required for compatibility reasons)
Input :
Output :
Input :
Output :