isRtl

abstract fun isRtl(array: Array<Char>, start: Int, count: Int): Boolean(source)

Guess if a chars array is in the RTL direction or not.

Return

true if all chars in the range are to be considered in a RTL direction, false otherwise.

Parameters

array

the char array.

start

start index, inclusive.

count

the length to check, must not be negative and not greater than array.length - start.


abstract fun isRtl(cs: CharSequence, start: Int, count: Int): Boolean(source)

Guess if a CharSequence is in the RTL direction or not.

Return

true if all chars in the range are to be considered in a RTL direction, false otherwise.

Parameters

cs

the CharSequence.

start

start index, inclusive.

count

the length to check, must not be negative and not greater than CharSequence.length() - start.