remove method

  1. @override
bool remove(
  1. FollowValue value
)

Implementation

@override
bool remove(FollowValue value) {
  if (!this.contains(value)) {
    return false;
  }
  this.rawValue = this.rawValue & ~value.rawValue;
  return true;
}