Normalizer2.HasBoundaryAfter(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 always has a normalization boundary after it, regardless of context.
[Android.Runtime.Register("hasBoundaryAfter", "(I)Z", "GetHasBoundaryAfter_IHandler", ApiSince=24)]
public abstract bool HasBoundaryAfter (int c);
[<Android.Runtime.Register("hasBoundaryAfter", "(I)Z", "GetHasBoundaryAfter_IHandler", ApiSince=24)>]
abstract member HasBoundaryAfter : int -> bool
Parameters
- c
- Int32
character to test
Returns
true if c has a normalization boundary after it
- Attributes
Remarks
Tests if the character always has a normalization boundary after it, regardless of context. If true, then the character does not normalization-interact with following characters. In other words, a string containing this character can be normalized by processing portions up to 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.hasBoundaryAfter(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.