| 308 | // --------------------------------------------------------------------------- |
| 309 | |
| 310 | float TypedColumnBuffer::readFloat32(std::size_t row) const { |
| 311 | return readFixed<float>(row); |
| 312 | } |
| 313 | |
| 314 | double TypedColumnBuffer::readFloat64(std::size_t row) const { |
| 315 | return readFixed<double>(row); |
no outgoing calls