time.Time.After() Function in Golang With Examples Last Updated : 19 Apr, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report In Go language, time packages supplies functionality for determining as well as viewing time. The Time.After() function in Go language is used to check if the stated time instant t is after the stated u or not. 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) After(u Time) bool Here, "t" is the stated time and "u" is the time that is present as an argument in the After() method. Return Value: It returns true if "t" is present after "u" else it returns false. Example 1: C // Golang program to illustrate the usage of // Time.After() function // Including main package package main // Importing fmt and time import "fmt" import "time" // Calling main func main() { // Declaring t and u in UTC t := time.Date(2020, 0, 0, 0, 0, 0, 0, time.UTC) u := time.Date(2019, 0, 0, 0, 0, 0, 0, time.UTC) // Calling After method res := t.After(u) // Prints output fmt.Printf("%v", res) } Output: true Example 2: C // Golang program to illustrate the usage of // Time.After() function // Including main package package main // Importing fmt and time import "fmt" import "time" // Calling main func main() { // Declaring t and u in UTC t := time.Date(2030, 0, 0, 0, 0, 0, 0, time.UTC) u := time.Date(2040, 0, 0, 0, 0, 0, 0, time.UTC) // Calling After method res := t.After(u) // Prints output fmt.Printf("%v", res) } Output: false Comment More infoAdvertise with us Next Article time.Time.Add() Function in Golang with Examples N nidhi1352singh Follow Improve Article Tags : Go Language GoLang-time Similar Reads time.Time.Date() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Date() function in Go language is used to check the year, month, and day in which the stated "t" presents itself. Moreover, this function is defined under the time package. Here, you need to import 2 min read time.After() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The After() function in Go language is used to wait for the duration of time to pass and after that it delivers the actual time on the returned channel. Moreover, this function is defined under the time pac 3 min read time.Time.Add() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Add() function in Go language is used to add the stated time and duration. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to use the 2 min read time.Time.AddDate() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.AddDate() function in Go language is used to check the time which is equivalent to adding the stated number of years, months, and days to the given "t". For example, if the parameters of the method 3 min read time.Time.Day() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Day() function in Go language is used to check the day of the month in which the stated "t" presents itself. Moreover, this function is defined under the time package. Here, you need to import the 2 min read time.Time.Before() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Before() function in Go language is used to check if the stated time instant t is before the stated u or not. Moreover, this function is defined under the time package. Here, you need to import the 2 min read Like