method

out_of_range?

rails latest stable - Class: ActiveModel::Type::Integer

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

out_of_range?(value)
private

No documentation available.

# File activemodel/lib/active_model/type/integer.rb, line 104
        def out_of_range?(value)
          value && (@max <= value || @min > value)
        end