项目文件夹

文件
2026-07-13 11:58:46 +08:00

495 B

title, description, categories, keywords, params
title description categories keywords params
Truncate Returns the result of rounding DURATION1 toward zero to a multiple of DURATION2.
functions_and_methods
returnType signatures
time.Duration
DURATION1.Truncate DURATION2
{{ $d = time.ParseDuration "3.5h2.5m1.5s" }}

{{ $d.Truncate (time.ParseDuration "2h") }} → 2h0m0s
{{ $d.Truncate (time.ParseDuration "3m") }} → 3h30m0s
{{ $d.Truncate (time.ParseDuration "4s") }} → 3h32m28s