(f *field)
| 85 | } |
| 86 | |
| 87 | func quantizedFactory(f *field) fieldDecoder { |
| 88 | qfd := newQuantizedFloatDecoder(f.bitCount, f.encodeFlags, f.lowValue, f.highValue) |
| 89 | return func(r *reader) cell { |
| 90 | return floatCell(qfd.decode(r)) |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | func vectorFactory(n int) fieldFactory { |
| 95 | return func(f *field) fieldDecoder { |
no test coverage detected