module Benchmark::Trend::Clock

def measure

Returns:
  • (Float) -
def measure
  before = now
  yield
  after = now
  after - before
end