pub trait CharBidiClass {
    fn bidi_class(self) -> BidiClass;
    fn is_ltr(self) -> bool;
    fn is_rtl(self) -> bool;
}
Expand description

Methods for Bidi_Class character property.

Required Methods§

Get BidiClass of the character.

Whether the character has left-to-right (LTR) bidi directionality.

Whether the character has right-to-left (RTL) bidi directionality.

Implementations on Foreign Types§

Implementors§