| 1268 | bool IsFloat64() const noexcept { return this->ScalarType == scalarType::FLOAT64; } |
| 1269 | |
| 1270 | void SetBinaryFormat(const bool on) |
| 1271 | { |
| 1272 | this->Format = (on ? fileFormat::BINARY : fileFormat::ASCII); |
| 1273 | } |
| 1274 | void SetLabel64(const bool on) noexcept |
| 1275 | { |
| 1276 | this->LabelType = (on ? labelType::INT64 : labelType::INT32); |