Method: Time#min
- Defined in:
- lib/source/ruby.rb
#min ⇒ Object
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
6540 6541 6542 |
# File 'lib/source/ruby.rb', line 6540 def min `this.__value__.getMinutes()` end |