data class OrRouteSelector : RouteSelector
Evaluates a route as a result of the OR operation using two other selectors
OrRouteSelector(first: RouteSelector, second: RouteSelector)
Evaluates a route as a result of the OR operation using two other selectors |
val first: RouteSelector
is a first selector |
|
val second: RouteSelector
is a second selector |
val quality: Double
indicates how good this selector is compared to siblings |
fun evaluate(context: RoutingResolveContext, segmentIndex: Int): RouteSelectorEvaluation
Evaluates this selector against context and a path segment at segmentIndex |
|
fun toString(): String |