ruby-net-ldap/lib/net/ber/core_ext/false_class.rb
2010-03-20 13:47:56 +01:00

8 lines
155 B
Ruby

module Net::BER::Extensions::FalseClass
##
# Converts +false+ to the BER wireline representation of +false+.
def to_ber
"\001\001\000"
end
end