add method

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

Implementation

@override
bool add(FollowValue value) {
  if (this.contains(value)) {
    return false;
  }
  this.rawValue = this.rawValue | value.rawValue;
  return true;
}