(indent int)
| 341 | const step = 3 |
| 342 | |
| 343 | func sIndent(indent int) string { |
| 344 | |
| 345 | return strings.Repeat(" ", indent) |
| 346 | } |
| 347 | |
| 348 | // decFloat32Sequence receives a byte slice with float numbers separated |
| 349 | // by spaces and a preallocated destination slice. |