Converts raw bits to a typed atom.
(&self, bits: u32)
| 90 | |
| 91 | /// Converts raw bits to a typed atom. |
| 92 | pub fn atom_from_bits(&self, bits: u32) -> Atom<T> { |
| 93 | Atom::new(bits) |
| 94 | } |
| 95 | |
| 96 | /// Converts an atom back to its string representation. Returns `None` for invalid atoms. |
| 97 | pub fn atom_to_str(&self, atom: Atom<T>) -> Option<&'static str> { |
no outgoing calls