Module Sequel::Dataset::QueryBlockCopy
In: lib/sequel_core/dataset/query.rb

Module used by Dataset#query that has the effect of making all dataset methods into !-style methods that modify the receiver.

Methods

clone  

Public Instance methods

Merge the given options into the receiver‘s options and return the receiver instead of cloning the receiver.

[Source]

    # File lib/sequel_core/dataset/query.rb, line 35
35:       def clone(opts = nil)
36:         @opts.merge!(opts)
37:         self
38:       end

[Validate]