| 182 | |
| 183 | template <typename T> |
| 184 | T check(T ptr) |
| 185 | { |
| 186 | if (ptr == nullptr) { |
| 187 | throw std::runtime_error("failed to instantiate btck object"); |
| 188 | } |
| 189 | return ptr; |
| 190 | } |
| 191 | |
| 192 | template <typename Collection, typename ValueType> |
| 193 | class Iterator |
no outgoing calls