Sha256: 4f65d614efb734b93115b163d32442e517d07640c3293b13cd69ce47861098ea
Contents?: true
Size: 1.85 KB
Versions: 5
Compression:
Stored size: 1.85 KB
Contents
# -- # Copyright (C) 2008-2010 10gen Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ++ module BSON # A class representing the BSON MaxKey type. MaxKey will always compare greater than # all other BSON types and values. # # @example Sorting (assume @numbers is a collection): # # >> @numbers.save({"n" => Mongo::MaxKey.new}) # >> @numbers.save({"n" => 0}) # >> @numbers.save({"n" => 5_000_000}) # >> @numbers.find.sort("n").to_a # => [{"_id"=>4b5a050c238d3bace2000004, "n"=>0}, # {"_id"=>4b5a04e6238d3bace2000002, "n"=>5_000_000}, # {"_id"=>4b5a04ea238d3bace2000003, "n"=>#<Mongo::MaxKey:0x1014ef410>}, # ] class MaxKey def ==(obj) obj.class == MaxKey end end # A class representing the BSON MinKey type. MinKey will always compare less than # all other BSON types and values. # # @example Sorting (assume @numbers is a collection): # # >> @numbers.save({"n" => Mongo::MinKey.new}) # >> @numbers.save({"n" => -1_000_000}) # >> @numbers.save({"n" => 1_000_000}) # >> @numbers.find.sort("n").to_a # => [{"_id"=>4b5a050c238d3bace2000004, "n"=>#<Mongo::MinKey:0x1014ef410>}, # {"_id"=>4b5a04e6238d3bace2000002, "n"=>-1_000_000}, # {"_id"=>4b5a04ea238d3bace2000003, "n"=>1_000_000}, # ] class MinKey def ==(obj) obj.class == MinKey end end end
Version data entries
5 entries across 5 versions & 2 rubygems