MCPcopy Create free account
hub / github.com/cel-expr/cel-go / timestampGetHours

Function timestampGetHours

common/stdlib/standard.go:1012–1018  ·  view source on GitHub ↗
(ts, tz ref.Val)

Source from the content-addressed store, hash-verified

1010}
1011
1012func timestampGetHours(ts, tz ref.Val) ref.Val {
1013 t, err := inTimeZone(ts, tz)
1014 if err != nil {
1015 return types.NewErrFromString(err.Error())
1016 }
1017 return types.Int(t.Hour())
1018}
1019
1020func timestampGetMinutes(ts, tz ref.Val) ref.Val {
1021 t, err := inTimeZone(ts, tz)

Callers 1

initFunction · 0.70

Calls 4

NewErrFromStringFunction · 0.92
IntTypeAlias · 0.92
inTimeZoneFunction · 0.85
ErrorMethod · 0.45

Tested by

no test coverage detected