class Net::LDAP::Filter
def begins(attribute, value)
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