class Net::LDAP::Filter

def begins(attribute, value)

escaped, so the "*" character is interpreted literally.
attribute must begin with a particular string. The attribute value is
Creates a Filter object indicating that the value of a particular
#
def begins(attribute, value)
  new(:eq, attribute, escape(value) + "*")
end