Initial node implementation #4

Merged
zack merged 51 commits from develop into master 2023-07-19 18:09:13 +00:00
11 changed files with 166 additions and 44 deletions
Showing only changes of commit 5c596dd50e - Show all commits

View File

@ -5,7 +5,7 @@ use core::cell::Cell;
#[derive(Copy, Clone)]
pub struct CellView<'a, T: Copy>(&'a Cell<T>);
impl<'a, T: Copy> CellView<'a, T> {
impl<T: Copy> CellView<'_, T> {
#[inline]
pub fn get(self) -> T {
self.0.get()