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