Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go
import "time"
func clock(f func()) time.Duration {
	t := time.Now()
	f()
	return time.Since(t)
}

You may use this clock function to time any piece of code, by wrapping the code in a closure of type func().
(time (f))

New implementation...
< >
programming-idioms.org