# File lib/ruby-vpi/integer.rb, line 79 79: def ensure_max aLimit 80: if self > aLimit 81: aLimit 82: else 83: self 84: end 85: end