Method: Time#min

Defined in:
lib/source/ruby.rb

#minObject

call-seq:

time.min -> integer

Returns the minute of the hour (0..59) for time.

t = Time.now    #=> Tue Sep 23 2008 22:10:22 GMT-0400 (EDT)
t.min           #=> 10


6460
6461
6462
# File 'lib/source/ruby.rb', line 6460

def min
  `this._value.getMinutes()`
end