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