Open In App

time.Minutes() Function in Golang With Examples

Last Updated : 21 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In Go language, time packages supplies functionality for determining as well as viewing time. The Minutes() function in Go language is used to find the duration of time in the form of a floating-point number of minutes. 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 (d Duration) Minutes() float64

Here, d is the duration of time.

Return Value: It returns the duration value as float64.

Example 1:




// Golang program to illustrate the usage of
// Minutes() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Calling main
func main() {
  
    // Defining duration 
    // of Minutes method
    min, _ := time.ParseDuration("34h")
  
    // Prints duration as a 
    // floating point number
    fmt.Printf("Only %.1f minutes of"+
     " task is remaining.", min.Minutes())
}


Output:

Only 2040.0 minutes of task is remaining.

Example 2:




// Golang program to illustrate the usage of
// Minutes() function
  
// Including main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Calling main
func main() {
  
    // Defining duration of
    // Minutes method
    min, _ := time.ParseDuration("3m4534s64376378ns")
  
    // Prints duration as a
    // floating point number
    fmt.Printf("Only %.1f minutes of"+
     " task is remaining.", min.Minutes())
}


Output:

Only 78.6 minutes of task is remaining.


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads