intersection method

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

Implementation

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