30 #include <xlnt/xlnt_config.hpp> 63 static index_t column_index_from_string(
const std::string &column_string);
73 static std::string column_string_from_index(
index_t column_index);
88 column_t(
const std::string &column_string);
98 std::string column_string()
const;
103 column_t &operator=(
const std::string &rhs);
108 column_t &operator=(
const char *rhs);
133 bool operator==(
const std::string &other)
const;
153 bool operator!=(
const std::string &other)
const;
163 bool operator>(
const column_t &other)
const;
168 bool operator>=(
const column_t &other)
const;
173 bool operator<(
const column_t &other)
const;
178 bool operator<=(
const column_t &other)
const;
271 enum class row_or_col_t : int
286 std::size_t operator()(
const column_t &k)
const;
index_t index
Internal numeric value of this column index.
Definition: index_types.hpp:268
std::uint32_t index_t
Alias declaration for the internal numeric type of this column.
Definition: index_types.hpp:53
std::uint32_t row_t
All rows should be referred to by an instance of this type.
Definition: index_types.hpp:40
Definition: cell_reference.hpp:261
Enumerates the possible types a cell can be determined by it's current value.
Definition: cell.hpp:36
bool operator!=(std::nullptr_t, const cell &cell)
Returns true if this cell is initialized.
size_t operator()(const xlnt::column_t &k) const
Returns the result of hashing column k.
Definition: index_types.hpp:302
bool operator==(std::nullptr_t, const cell &cell)
Returns true if this cell is uninitialized.
Columns can be referred to as a string A,B,...Z,AA,AB,..,ZZ,AAA,...,ZZZ or as a 1-indexed index...
Definition: index_types.hpp:47
Functor for hashing a column. Allows for use of std::unordered_set<column_t, column_hash> and similar...
Definition: index_types.hpp:281