rebind method
- Ref<
T> other
Rebinds this reference to point to the exact same value as other.
Implementation
void rebind(Ref<T> other) {
_value = other.get();
}
Rebinds this reference to point to the exact same value as other.
void rebind(Ref<T> other) {
_value = other.get();
}