Module: Variable::Timer

Defined in:
lib/variable.rb

Class Method Summary collapse

Class Method Details

.elapsedFloat

Monotonic elapsed time of block execution

Returns:

  • (Float)


62
63
64
65
66
# File 'lib/variable.rb', line 62

def self.elapsed
  start = now
  yield
  now - start
end