UCharacter.IsLowSurrogate Method

Definition

Overloads

IsLowSurrogate(Char)

Same as Character#isLowSurrogate,

IsLowSurrogate(Int32)

Same as Character#isLowSurrogate, except that the ICU version accepts int for code points.

IsLowSurrogate(Char)

Same as Character#isLowSurrogate,

[Android.Runtime.Register("isLowSurrogate", "(C)Z", "", ApiSince=24)]
public static bool IsLowSurrogate (char ch);
[<Android.Runtime.Register("isLowSurrogate", "(C)Z", "", ApiSince=24)>]
static member IsLowSurrogate : char -> bool

Parameters

ch
Char

the char to check

Returns

true if ch is a low (trail) surrogate

Attributes

Remarks

Same as Character#isLowSurrogate,

Java documentation for android.icu.lang.UCharacter.isLowSurrogate(char).

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

IsLowSurrogate(Int32)

Same as Character#isLowSurrogate, except that the ICU version accepts int for code points.

[Android.Runtime.Register("isLowSurrogate", "(I)Z", "", ApiSince=33)]
public static bool IsLowSurrogate (int codePoint);
[<Android.Runtime.Register("isLowSurrogate", "(I)Z", "", ApiSince=33)>]
static member IsLowSurrogate : int -> bool

Parameters

codePoint
Int32

the code point to check (In ICU 3.0-69 the type of this parameter was char.)

Returns

true if codePoint is a low (trail) surrogate

Attributes

Remarks

Same as Character#isLowSurrogate, except that the ICU version accepts int for code points.

Java documentation for android.icu.lang.UCharacter.isLowSurrogate(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