set method
Sets the contents of the cell to value.
Implementation
@override
Result<(), T> set(T value) {
if (_val != null) {
return Err(value);
}
_val = value;
return const Ok(());
}
Sets the contents of the cell to value.
@override
Result<(), T> set(T value) {
if (_val != null) {
return Err(value);
}
_val = value;
return const Ok(());
}