time.Time.Truncate() Function in Golang with Examples
Last Updated :
28 Apr, 2020
In Go language,
time packages supplies functionality for determining as well as viewing time. The
Time.Truncate() function in Go language is used to find the output of rounding the stated time "t" to the closest multiple of the given duration "d" from the zero time. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to use these functions.
Syntax:
func (t Time) Truncate(d Duration) Time
Here, "t" is the stated time, and "d" is the given duration.
Note: The Truncate() method works on the time in the form of an absolute duration from zero time. However, it doesn't work on the layout form of the time.
Return Value: It returns the output of rounding the given time "t" to the closest multiple of the stated duration "d". Where, if d is less than or equal to zero then it returns "t" out of any monotonic clock reading but else unaltered.
Example 1:
C
// Golang program to illustrate the usage of
// Time.Truncate() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Defining t for Truncate method
t := time.Date(2007, 7, 6, 23, 58, 11, 60, time.UTC)
// Defining duration
d := (60 * time.Second)
// Calling Truncate() method
trunc := t.Truncate(d)
// Prints output
fmt.Printf("The result after rounding 't' is: %v\n", trunc)
}
Output:
The result after rounding 't' is: 2007-07-06 23:58:00 +0000 UTC
Example 2:
C
// Golang program to illustrate the usage of
// Time.Truncate() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Defining t for Truncate method
t := time.Date(2047, 47, 96, 123, 98, 81, 999434, time.UTC)
// Defining duration
d := (2 * time.Hour)
// Calling Truncate() method
trunc := t.Truncate(d)
// Prints output
fmt.Printf("The result after rounding 't' is: %v\n", trunc)
}
Output:
The result after rounding 't' is: 2051-02-09 04:00:00 +0000 UTC
Here, the "t" stated in the above code has values that are outside the usual range but they are normalized while conversion.
Similar Reads
time.Truncate() Function in Golang With Examples In Go language, time packages supply functionality for determining as well as viewing time. The Truncate() function in Go language is used to find the outcome of rounding the stated duration âdâ towards zero to a multiple of âmâ duration. Moreover, this function is defined under the time package. He
2 min read
time.Time.UTC() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.UTC() function in Go language is used to yield "t" with the location that is set to UTC. Moreover, this function is defined under the time package. Here, you need to import the "time" package in or
2 min read
time.Time.Unix() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Unix() function in Go language is used to yield "t" as a Unix time that is the number of seconds passed from January 1, 1970, in UTC and the output here doesn't rely upon the location connected wit
2 min read
time.Time.UnixNano() Function in Golang with Examples In Go language, time packages supply functionality for determining as well as viewing time. The Time.UnixNano() function in Go language is used to yield "t" as a Unix time that is the number of seconds passed from January 1, 1970, in UTC and the output here doesn't rely upon the location connected w
2 min read
time.Time.UnmarshalText() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The UnmarshalText() function in Go language is used to implement the encoding.TextUnmarshaler interface. The time here is a quoted-string which is in RFC 3339 format. Moreover, this function is defined unde
2 min read