Get the `Atom` for the given string, if it has already been inserted into this pool.
(&self, s: &str)
| 215 | /// Get the `Atom` for the given string, if it has already been inserted |
| 216 | /// into this pool. |
| 217 | pub fn get_atom(&self, s: &str) -> Option<Atom> { |
| 218 | self.map.get(s).copied() |
| 219 | } |
| 220 | |
| 221 | /// Does this pool contain the given `atom`? |
| 222 | #[inline] |
no test coverage detected