| 358 | } |
| 359 | |
| 360 | bool AbstractColumn::isNumeric() const { |
| 361 | const auto mode = columnMode(); |
| 362 | return (mode == ColumnMode::Double || mode == ColumnMode::Integer || mode == ColumnMode::BigInt); |
| 363 | } |
| 364 | |
| 365 | bool AbstractColumn::isPlottable() const { |
| 366 | const auto mode = columnMode(); |
no outgoing calls