intersection method

  1. @override
EnumSet<Lane> intersection(
  1. EnumSet<Lane> other
)

Implementation

@override
EnumSet<Lane> intersection(EnumSet<Lane> other) =>
    LaneEnumSet.fromRawValue(this.rawValue & other.rawValue);