⭐️ A friendly language for building type-safe, scalable systems!
363

Configure Feed

Select the types of activity you want to include in your feed.

comment for future work

authored by

Giacomo Cavalieri and committed by
Louis Pilfold
(Jul 14, 2026, 12:57 PM +0100) 875e69da 61ef0866

+4
+4
erlang-term-format/src/lib.rs
··· 121 121 122 122 /// Pushes the most compact representation of the given atom. 123 123 pub fn atom(&mut self, atom: &str) { 124 + // TODO: we could explore using ATOM_CACHE_REF in future. 125 + // Might be able to get slightly faster ETF parsing out of erlc if we 126 + // use it: 127 + // https://www.erlang.org/doc/apps/erts/erl_ext_dist.html#atom_cache_ref 124 128 if atom.len() <= 255 { 125 129 self.small_atom_utf8(atom); 126 130 } else {