entriesInRange method
Элементы, попадающие в отрезок [begin, end).
- Throws: Exception если begin > end.
Implementation
List<InstructionRouteEntry> entriesInRange(
RoutePoint begin,
RoutePoint end
) {
var _a1 = begin._copyFromDartTo_CRoutePoint();
var _a2 = end._copyFromDartTo_CRoutePoint();
_CArray_CInstructionRouteEntry res = _CInstructionRouteAttribute_entriesInRange_CRoutePoint_CRoutePoint(_CInstructionRouteAttributeMakeDefault().._impl=_self, _a1, _a2);
final t = res._toDart();
res._releaseIntermediate();
return t;
}