If I define a Ruby functions like this:
def ldap_get ( base_dn, filter, scope=LDAP::LDAP_SCOPE_SUBTREE, attrs=nil )
How can I call it supplying only the first 2 and the last args? Why isn't something like
ldap_get( base_dn, filter, , X)
possible or if it is possible, how can it be done?
Thanks for any replies!