You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have BidiInfo and then utf16::BidiInfo types (with other similar duplication).
It would be nice if instead we had BidiInfo<T>, ParagraphInfo<T>, etc, which all used some trait input like TextInfo; rather than having duplicate types for everything. We might need some kind of UTF8UTF16 marker type for this.
I don't have the time to do this myself but it would be really neat. Especially if we can extend stuff to UTF32 as well as WTF8 and other ill-formed UTF8.
The text was updated successfully, but these errors were encountered:
See #109
Currently we have BidiInfo and then
utf16::BidiInfo
types (with other similar duplication).It would be nice if instead we had
BidiInfo<T>
,ParagraphInfo<T>
, etc, which all used some trait input like TextInfo; rather than having duplicate types for everything. We might need some kind ofUTF8
UTF16
marker type for this.I don't have the time to do this myself but it would be really neat. Especially if we can extend stuff to UTF32 as well as WTF8 and other ill-formed UTF8.
The text was updated successfully, but these errors were encountered: