Exemplo n.º 1
0
// double PyFloat_GetMin()
// Return the minimum normalized positive float DBL_MIN as C double.
//
// New in version 2.6.
func PyFloat_GetMin() float32 {
	return float32(C.PyFloat_GetMin())
}
Exemplo n.º 2
0
// double PyFloat_GetMin()
// Return the minimum normalized positive float DBL_MIN as C double.
//
// New in version 2.6.
func PyFloat_GetMin() float64 {
	return float64(C.PyFloat_GetMin())
}