Source code
Revision control
Copy as Markdown
Other Tools
// generated by diplomat-tool
import type { DataError } from "./DataError"
import type { DataProvider } from "./DataProvider"
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/**
* Lookup of the Canonical_Combining_Class Unicode property
*
* See the [Rust documentation for `CanonicalCombiningClassMap`](https://docs.rs/icu/latest/icu/normalizer/properties/struct.CanonicalCombiningClassMap.html) for more information.
*/
export class CanonicalCombiningClassMap {
get ffiValue(): pointer;
/**
* Construct a new CanonicalCombiningClassMap instance for NFC using a particular data source.
*
* See the [Rust documentation for `new`](https://docs.rs/icu/latest/icu/normalizer/properties/struct.CanonicalCombiningClassMap.html#method.new) for more information.
*/
static createWithProvider(provider: DataProvider): CanonicalCombiningClassMap;
/**
* See the [Rust documentation for `get`](https://docs.rs/icu/latest/icu/normalizer/properties/struct.CanonicalCombiningClassMapBorrowed.html#method.get) for more information.
*
* Additional information: [1](https://docs.rs/icu/latest/icu/properties/props/struct.CanonicalCombiningClass.html)
*/
get(ch: codepoint): number;
constructor();
}