Source code
Revision control
Copy as Markdown
Other Tools
// generated by diplomat-tool
import wasm from "./diplomat-wasm.mjs";
import * as diplomatRuntime from "./diplomat-runtime.mjs";
/**
* See the [Rust documentation for `SentenceBreakIterator`](https://docs.rs/icu/latest/icu/segmenter/iterators/struct.SentenceBreakIterator.html) for more information.
*/
const SentenceBreakIteratorLatin1_box_destroy_registry = new FinalizationRegistry((ptr) => {
wasm.icu4x_SentenceBreakIteratorLatin1_destroy_mv1(ptr);
});
export class SentenceBreakIteratorLatin1 {
// Internal ptr reference:
#ptr = null;
// Lifetimes are only to keep dependencies alive.
// Since JS won't garbage collect until there are no incoming edges.
#selfEdge = [];
#aEdge = [];
#internalConstructor(symbol, ptr, selfEdge, aEdge) {
if (symbol !== diplomatRuntime.internalConstructor) {
console.error("SentenceBreakIteratorLatin1 is an Opaque type. You cannot call its constructor.");
return;
}
this.#aEdge = aEdge;
this.#ptr = ptr;
this.#selfEdge = selfEdge;
// Are we being borrowed? If not, we can register.
if (this.#selfEdge.length === 0) {
SentenceBreakIteratorLatin1_box_destroy_registry.register(this, this.#ptr);
}
return this;
}
get ffiValue() {
return this.#ptr;
}
/**
* 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/latest/icu/segmenter/iterators/struct.SentenceBreakIterator.html#method.next) for more information.
*/
next() {
const result = wasm.icu4x_SentenceBreakIteratorLatin1_next_mv1(this.ffiValue);
try {
return result;
}
finally {
}
}
constructor(symbol, ptr, selfEdge, aEdge) {
return this.#internalConstructor(...arguments)
}
}