findNearBackward method
Найти ближайший элемент, позиция которого < = point.
- Note: Сложность операции log2(N), где N = size.
Implementation
InstructionRouteEntry? findNearBackward(
RoutePoint point
) {
var _a1 = point._copyFromDartTo_CRoutePoint();
_COptional_CInstructionRouteEntry res = _CInstructionRouteAttribute_findNearBackward_CRoutePoint(_CInstructionRouteAttributeMakeDefault().._impl=_self, _a1);
final t = res._toDart();
res._releaseIntermediate();
return t;
}