module Mongo::Operation::KillCursors::CommandBuilder

@api private

Private Instance Methods

int64_cursor_ids() click to toggle source
# File lib/mongo/operation/kill_cursors/command_builder.rb, line 26
def int64_cursor_ids
  spec.fetch(:cursor_ids).map do |id|
    BSON::Int64.new(id)
  end
end