Flowdock
method

inject_join

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ToSql
inject_join(list, collector, join_str) private

No documentation

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

Hide source
# File activerecord/lib/arel/visitors/to_sql.rb, line 787
        def inject_join(list, collector, join_str)
          list.each_with_index do |x, i|
            collector << join_str unless i == 0
            collector = visit(x, collector)
          end
          collector
        end
Register or log in to add new notes.