| 264 | } |
| 265 | |
| 266 | inline void UniqueInsert(const T& key) { |
| 267 | auto it = uniq_.emplace(key, next_index_); |
| 268 | if (it.second) { |
| 269 | inodes_.emplace_back(INode(next_index_, key)); |
| 270 | ++next_index_; |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | inline const INode* GetINodeByPos(const TIndex pos) const { |
| 275 | const INode* inode = &inodes_[pos]; |
no test coverage detected