enum
ICU::BiDi::ReorderingOption
Overview
Options for reordering_options=. Affects how the BiDi algorithm operates.
Defined in:
icu/bidi.crEnum Members
-
None =
0_u32 -
No options (corresponds to ICU's UBIDI_OPTION_DEFAULT = 0).
-
InsertMarks =
1_u32 -
Insert Bidi marks (LRM or RLM) when needed to ensure correct result of a reordering to a Logical order.
-
RemoveControls =
2_u32 -
Remove Bidi control characters.
-
Streaming =
4_u32 -
Process the output as part of a stream to be continued.
-
All =
7_u32
Instance Method Summary
-
#insert_marks?
Returns
trueif this enum value containsInsertMarks -
#none?
Returns
trueif this enum value containsNone -
#remove_controls?
Returns
trueif this enum value containsRemoveControls -
#streaming?
Returns
trueif this enum value containsStreaming