Phase 25.1a: selfhost builder hotfix (fn rename, docs)

This commit is contained in:
nyash-codex
2025-11-15 05:42:32 +09:00
parent 8d9bbc40bd
commit 6856922374
40 changed files with 2013 additions and 72 deletions

View File

@ -82,7 +82,10 @@ impl BoxCore for IntArrayCore {
impl NyashBox for IntArrayCore {
fn to_string_box(&self) -> StringBox {
StringBox::new(&format!("IntArrayCore(len={})", self.data.read().unwrap().len()))
StringBox::new(&format!(
"IntArrayCore(len={})",
self.data.read().unwrap().len()
))
}
fn equals(&self, other: &dyn NyashBox) -> BoolBox {