entriesInRange method

List<FloatRouteLongEntry> entriesInRange(
  1. RoutePoint begin,
  2. RoutePoint end
)

Элементы, частично или полностью покрываемые отрезком begin, end.

  • Throws: Exception если begin > end.

Implementation

List<FloatRouteLongEntry> entriesInRange(
  RoutePoint begin,
  RoutePoint end
)  {
  var _a1 = begin._copyFromDartTo_CRoutePoint();
  var _a2 = end._copyFromDartTo_CRoutePoint();
  _CArray_CFloatRouteLongEntry res = _CFloatRouteLongAttribute_entriesInRange_CRoutePoint_CRoutePoint(_CFloatRouteLongAttributeMakeDefault().._impl=_self, _a1, _a2);
  final t = res._toDart();
  res._releaseIntermediate();
  return t;
}