| 36 | const DefaultPrecisionStep uint = 4 |
| 37 | |
| 38 | type NumericField struct { |
| 39 | name string |
| 40 | arrayPositions []uint64 |
| 41 | options index.FieldIndexingOptions |
| 42 | value numeric.PrefixCoded |
| 43 | numPlainTextBytes uint64 |
| 44 | length int |
| 45 | frequencies index.TokenFrequencies |
| 46 | } |
| 47 | |
| 48 | func (n *NumericField) Size() int { |
| 49 | var freqSize int |
nothing calls this directly
no outgoing calls
no test coverage detected