1 Star 0 Fork 63

jangocheng/carbon

forked from dromara/carbon 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tag_bench_test.go 417 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2024-01-12 10:57 . v2.3.5
package carbon
import "testing"
func BenchmarkCarbon_SetTag(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SetTag(&tag{
carbon: "datetime",
tz: Local,
})
}
}
func BenchmarkCarbon_LoadTag(b *testing.B) {
type Student struct {
Birthday Carbon `json:"birthday" carbon:"type:date"`
}
student := Student{
Birthday: Now(),
}
for n := 0; n < b.N; n++ {
_ = LoadTag(&student)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jangocheng/carbon.git
git@gitee.com:jangocheng/carbon.git
jangocheng
carbon
carbon
master

搜索帮助