isPaired method

bool isPaired(
  1. Object instance
)

Whether instance is paired with a PairedInstance.

Implementation

bool isPaired(Object instance) {
  return instanceManager.containsInstance(instance);
}