()
| 3629 | } |
| 3630 | |
| 3631 | func ExampleNewFromFloat32() { |
| 3632 | fmt.Println(NewFromFloat32(123.123123123123).String()) |
| 3633 | fmt.Println(NewFromFloat32(.123123123123123).String()) |
| 3634 | fmt.Println(NewFromFloat32(-1e13).String()) |
| 3635 | // OUTPUT: |
| 3636 | //123.12312 |
| 3637 | //0.123123124 |
| 3638 | //-10000000000000 |
| 3639 | } |
| 3640 | |
| 3641 | func ExampleNewFromFloat() { |
| 3642 | fmt.Println(NewFromFloat(123.123123123123).String()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…