Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

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

comment for future work

author
Giacomo Cavalieri
committer
Louis Pilfold
date (Jul 14, 2026, 12:57 PM +0100) commit 875e69da parent 61ef0866 change-id lwztnlny
+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 {