Normalizer2.IsInert(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests if the character is normalization-inert.
[Android.Runtime.Register("isInert", "(I)Z", "GetIsInert_IHandler", ApiSince=24)]
public abstract bool IsInert (int c);
[<Android.Runtime.Register("isInert", "(I)Z", "GetIsInert_IHandler", ApiSince=24)>]
abstract member IsInert : int -> bool
Parameters
- c
- Int32
character to test
Returns
true if c is normalization-inert
- Attributes
Remarks
Tests if the character is normalization-inert. If true, then the character does not change, nor normalization-interact with preceding or following characters. In other words, a string containing this character can be normalized by processing portions before this character and after this character independently. This is used for iterative normalization. See the class documentation for details.
Note that this operation may be significantly slower than hasBoundaryBefore().
Java documentation for android.icu.text.Normalizer2.isInert(int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.