Sets the contents of the cell to value.
@override Result<(), T> set(T value) { var val = _cache[this] as T?; if (val != null) { return Err(value); } _cache[this] = value; return const Ok(()); }