# File lib/mofo/xfn.rb, line 81
  def method_missing(method, *args, &block)
    method = method.to_s
    if (rels = method.split(/_and_/)).size > 1
      self[*rels]
    elsif @links.class.public_instance_methods.include? method
      @links.send(method, *args, &block)
    else
      check = args.first == true ? :== : :has?
      @links.select { |link| link.relation.send(check, method) }.first_or_self
    end
  end