method
min3
min3(a, b, c)
public
Hide source
# File lib/rubygems/text.rb, line 43 def min3 a, b, c # :nodoc: if a < b && a < c then a elsif b < c then b else c end end