blob: 0f7e698add735364d6d8707e6919153e7cebbf40 [file] [log] [blame]
// generated by diplomat-tool
// dart format off
part of 'lib.g.dart';
/// See the [Rust documentation for `LineBreakIterator`](https://docs.rs/icu/2.0.0/icu/segmenter/iterators/struct.LineBreakIterator.html) for more information.
final class LineBreakIteratorUtf8 implements ffi.Finalizable {
final ffi.Pointer<ffi.Opaque> _ffi;
// These are "used" in the sense that they keep dependencies alive
// ignore: unused_field
final core.List<Object> _selfEdge;
// ignore: unused_field
final core.List<Object> _aEdge;
// This takes in a list of lifetime edges (including for &self borrows)
// corresponding to data this may borrow from. These should be flat arrays containing
// references to objects, and this object will hold on to them to keep them alive and
// maintain borrow validity.
LineBreakIteratorUtf8._fromFfi(this._ffi, this._selfEdge, this._aEdge) {
if (_selfEdge.isEmpty) {
_finalizer.attach(this, _ffi.cast());
}
}
@_DiplomatFfiUse('icu4x_LineBreakIteratorUtf8_destroy_mv1')
static final _finalizer = ffi.NativeFinalizer(ffi.Native.addressOf(_icu4x_LineBreakIteratorUtf8_destroy_mv1));
/// Finds the next breakpoint. Returns -1 if at the end of the string or if the index is
/// out of range of a 32-bit signed integer.
///
/// See the [Rust documentation for `next`](https://docs.rs/icu/2.0.0/icu/segmenter/iterators/struct.LineBreakIterator.html#method.next) for more information.
int next() {
final result = _icu4x_LineBreakIteratorUtf8_next_mv1(_ffi);
return result;
}
}
@_DiplomatFfiUse('icu4x_LineBreakIteratorUtf8_destroy_mv1')
@ffi.Native<ffi.Void Function(ffi.Pointer<ffi.Void>)>(isLeaf: true, symbol: 'icu4x_LineBreakIteratorUtf8_destroy_mv1')
// ignore: non_constant_identifier_names
external void _icu4x_LineBreakIteratorUtf8_destroy_mv1(ffi.Pointer<ffi.Void> self);
@_DiplomatFfiUse('icu4x_LineBreakIteratorUtf8_next_mv1')
@ffi.Native<ffi.Int32 Function(ffi.Pointer<ffi.Opaque>)>(isLeaf: true, symbol: 'icu4x_LineBreakIteratorUtf8_next_mv1')
// ignore: non_constant_identifier_names
external int _icu4x_LineBreakIteratorUtf8_next_mv1(ffi.Pointer<ffi.Opaque> self);
// dart format on