For internal use, not provided by APIs
| 149 | |
| 150 | // For internal use, not provided by APIs |
| 151 | [[nodiscard]] bool isVersionSelected(int index) const |
| 152 | { |
| 153 | if (!versionsLoaded) |
| 154 | return false; |
| 155 | |
| 156 | return versions.at(index).is_currently_selected; |
| 157 | } |
| 158 | [[nodiscard]] bool isAnyVersionSelected() const |
| 159 | { |
| 160 | if (!versionsLoaded) |
no test coverage detected