Method: Mutant::Timer.elapsed

Defined in:
lib/mutant/timer.rb

.elapsedFloat

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Monotonic elapsed time of block execution

Returns:

  • (Float)


8
9
10
11
12
# File 'lib/mutant/timer.rb', line 8

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