mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08: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)
 | 
						|
}
 |