method

boundable?

rails latest stable - Class: ActiveRecord::Relation::QueryAttribute

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v5.2.3) is shown here.

boundable?()
public

No documentation available.

# File activerecord/lib/active_record/relation/query_attribute.rb, line 27
      def boundable?
        return @_boundable if defined?(@_boundable)
        value_for_database unless value_before_type_cast.is_a?(StatementCache::Substitute)
        @_boundable = true
      rescue ::RangeError
        @_boundable = false
      end