[ares] convenient noun constructors

This commit is contained in:
Philip Monk 2023-02-11 02:39:27 -07:00
parent 9de96c8e85
commit e4f44d705c

View File

@ -150,6 +150,11 @@ impl fmt::Debug for DirectAtom {
}
}
#[allow(non_snake_case)]
pub fn D(n: u64) -> Noun {
DirectAtom::new_panic(n).as_noun()
}
/** An indirect atom.
*
* Indirect atoms represent atoms above DIRECT_MAX as a tagged pointer to a memory buffer
@ -387,6 +392,19 @@ impl Cell {
}
}
pub fn new_tuple(allocator: &mut dyn NounAllocator, tup: &[Noun]) -> Cell {
if tup.len() < 2 {
panic!("Cannot create tuple with fewer than 2 elements");
}
let len = tup.len();
let mut cell = Cell::new(allocator, tup[len-2], tup[len-1]);
for i in (0..len-2).rev() {
cell = Cell::new(allocator, tup[i], cell.as_noun());
}
cell
}
pub unsafe fn new_raw_mut(allocator: &mut dyn NounAllocator) -> (Cell, *mut CellMemory) {
let memory = allocator.alloc_cell();
(*memory).metadata = 0;