| 115 | } |
| 116 | |
| 117 | CustomColorMap CustomColorMapStorage::at(size_t index) const |
| 118 | { |
| 119 | if (index >= this->customColorMaps.size()) |
| 120 | return {}; |
| 121 | return this->customColorMaps.at(index); |
| 122 | } |
| 123 | |
| 124 | std::optional<size_t> CustomColorMapStorage::indexOfColorMap(const ColorMap &colorMap, |
| 125 | const Color & other) const |
no test coverage detected