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