allowsAny method

bool allowsAny (VersionConstraint other)
override

Returns true if this constraint allows any of the versions that other allows.

Implementation

bool allowsAny(VersionConstraint other) => other.allows(this);