You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
350 B
Go
14 lines
350 B
Go
2 years ago
|
package timeconv
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// FloatSecondsDur converts a fractional seconds to duration.
|
||
|
func FloatSecondsDur(v float64) time.Duration {
|
||
|
return time.Duration(v * float64(time.Second))
|
||
|
}
|
||
|
|
||
|
// DurSecondsFloat converts a duration into fractional seconds.
|
||
|
func DurSecondsFloat(d time.Duration) float64 {
|
||
|
return float64(d) / float64(time.Second)
|
||
|
}
|