Module: Matrix::CoercionHelper
Overview
:nodoc:
Class Method Summary collapse
- .check_int(val, count, kind) ⇒ Object
-
.check_range(val, count, kind) ⇒ Object
Returns ‘nil` for non Ranges Checks range validity, return canonical range with 0 <= begin <= end < count.
-
.coerce_to(obj, cls, meth) ⇒ Object
Helper method to coerce a value into a specific class.
- .coerce_to_int(obj) ⇒ Object
- .coerce_to_matrix(obj) ⇒ Object
Class Method Details
.check_int(val, count, kind) ⇒ Object
1737 1738 1739 1740 1741 1742 1743 |
# File 'lib/matrix.rb', line 1737 def self.check_int(val, count, kind) val = CoercionHelper.coerce_to_int(val) if val >= count || val < -count raise IndexError, "given #{kind} #{val} is outside of #{-count}...#{count}" end val end |
.check_range(val, count, kind) ⇒ Object
Returns ‘nil` for non Ranges Checks range validity, return canonical range with 0 <= begin <= end < count
1727 1728 1729 1730 1731 1732 1733 1734 1735 |
# File 'lib/matrix.rb', line 1727 def self.check_range(val, count, kind) canonical = (val.begin + (val.begin < 0 ? count : 0)).. (val.end ? val.end + (val.end < 0 ? count : 0) - (val.exclude_end? ? 1 : 0) : count - 1) unless 0 <= canonical.begin && canonical.begin <= canonical.end && canonical.end < count raise IndexError, "given range #{val} is outside of #{kind} dimensions: 0...#{count}" end canonical end |
.coerce_to(obj, cls, meth) ⇒ Object
Helper method to coerce a value into a specific class. Raises a TypeError if the coercion fails or the returned value is not of the right class. (from Rubinius)
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 |
# File 'lib/matrix.rb', line 1704 def self.coerce_to(obj, cls, meth) # :nodoc: return obj if obj.kind_of?(cls) raise TypeError, "Expected a #{cls} but got a #{obj.class}" unless obj.respond_to? meth begin ret = obj.__send__(meth) rescue Exception => e raise TypeError, "Coercion error: #{obj.inspect}.#{meth} => #{cls} failed:\n" \ "(#{e.})" end raise TypeError, "Coercion error: obj.#{meth} did NOT return a #{cls} (was #{ret.class})" unless ret.kind_of? cls ret end |
.coerce_to_int(obj) ⇒ Object
1717 1718 1719 |
# File 'lib/matrix.rb', line 1717 def self.coerce_to_int(obj) coerce_to(obj, Integer, :to_int) end |
.coerce_to_matrix(obj) ⇒ Object
1721 1722 1723 |
# File 'lib/matrix.rb', line 1721 def self.coerce_to_matrix(obj) coerce_to(obj, Matrix, :to_matrix) end |