1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 12:52:28 +08:00

feat: add TrackFuncTime in datetime package

This commit is contained in:
dudaodong
2024-09-06 15:51:56 +08:00
parent c3372e18b1
commit 5e3337a52e
5 changed files with 115 additions and 5 deletions

View File

@@ -408,3 +408,17 @@ func ExampleIsWeekend() {
// true
// false
}
// func ExampleTrackFuncTime() {
// defer TrackFuncTime(time.Now())()
// var n int
// for i := 0; i < 5000000; i++ {
// n++
// }
// fmt.Println(1)
// // Output:
// // 1
// }