rebind method

void rebind(
  1. Ref<T> other
)

Rebinds this reference to point to the exact same value as other.

Implementation

void rebind(Ref<T> other) {
  _value = other.get();
}