Normalizer2.HasBoundaryBefore(Int32) Method

Definition

Tests if the character always has a normalization boundary before it, regardless of context.

[Android.Runtime.Register("hasBoundaryBefore", "(I)Z", "GetHasBoundaryBefore_IHandler", ApiSince=24)]
public abstract bool HasBoundaryBefore (int c);
[<Android.Runtime.Register("hasBoundaryBefore", "(I)Z", "GetHasBoundaryBefore_IHandler", ApiSince=24)>]
abstract member HasBoundaryBefore : int -> bool

Parameters

c
Int32

character to test

Returns

true if c has a normalization boundary before it

Attributes

Remarks

Tests if the character always has a normalization boundary before it, regardless of context. If true, then the character does not normalization-interact with preceding characters. In other words, a string containing this character can be normalized by processing portions before this character and starting from this character independently. This is used for iterative normalization. See the class documentation for details.

Java documentation for android.icu.text.Normalizer2.hasBoundaryBefore(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.

Applies to