Flowdock
method

new

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: BindMap
new(bind_values) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/statement_cache.rb, line 70
      def initialize(bind_values)
        @indexes   = []
        @bind_values = bind_values

        bind_values.each_with_index do |(_, value), i|
          if Substitute === value
            @indexes << i
          end
        end
      end
Register or log in to add new notes.