Construct a token given its hash value. NOTE: This will NOT insert a string into the manager as other constructors do.
| 47 | /// Construct a token given its hash value. |
| 48 | /// NOTE: This will NOT insert a string into the manager as other constructors do. |
| 49 | constexpr vtkStringToken(Hash tokenId) noexcept |
| 50 | : Id(tokenId) |
| 51 | { |
| 52 | } |
| 53 | |
| 54 | /// Return the token's ID (usually its hash but possibly not in the case of collisions). |
| 55 | Hash GetId() const { return this->Id; } |
no outgoing calls