()
| 601 | } |
| 602 | |
| 603 | func (p *gc_bin_parser) float() { |
| 604 | sign := p.int() |
| 605 | if sign == 0 { |
| 606 | return |
| 607 | } |
| 608 | |
| 609 | p.int() // exp |
| 610 | p.string() // mant |
| 611 | } |
| 612 | |
| 613 | // ---------------------------------------------------------------------------- |
| 614 | // Low-level decoders |