# File lib/facets/more/lisp.rb, line 251 def assoc(x, list) f = filter(lambda { |y| x == car(y)}, list) if null?(f) then nil else car(f) end end