# File lib/sup/util.rb, line 337
  def clamp min, max
    if self < min
      min
    elsif self > max
      max
    else
      self
    end
  end