mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-11 00:40:23 +00:00
14 lines
350 B
Go
14 lines
350 B
Go
|
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)
|
||
|
}
|