| 2229 | } |
| 2230 | |
| 2231 | BfAtom* BfSystem::FindAtom(const StringImpl& string) |
| 2232 | { |
| 2233 | BfAtom** atomPtr = NULL; |
| 2234 | if (mAtomMap.TryGetValueWith(string, &atomPtr)) |
| 2235 | return *atomPtr; |
| 2236 | return NULL; |
| 2237 | } |
| 2238 | |
| 2239 | BfAtom* BfSystem::FindAtom(const StringView& string) |
| 2240 | { |
no test coverage detected