(val uintptr)
| 97 | } |
| 98 | |
| 99 | func Uintptr(val uintptr) string { |
| 100 | return fmt.Sprint(val) |
| 101 | } |
| 102 | |
| 103 | func Round(val float64, decimalPlaces int, padToDecimalPlaces int) string { |
| 104 | rounded := math.Round(val*math.Pow10(decimalPlaces)) / math.Pow10(decimalPlaces) |