Class BDB::CIBtree
In: lib/rbot/registry/bdb.rb
Parent: Btree
Btree CIBtree lib/rbot/registry/bdb.rb BDB dot/m_22_0.png

Methods

Public Instance methods

[Source]

    # File lib/rbot/registry/bdb.rb, line 33
33:     def bdb_bt_compare(a, b)
34:       if a == nil || b == nil
35:         warning "CIBTree: comparing #{a.inspect} (#{self[a].inspect}) with #{b.inspect} (#{self[b].inspect})"
36:       end
37:       (a||'').downcase <=> (b||'').downcase
38:     end

[Validate]