servo/unicode-bidi

Make types generic over encoding

Offen

#113 geöffnet am 30.10.2023

 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Rust (38 Forks)github user discovery
help wanted

Repository-Metriken

Stars
 (87 Sterne)
PR-Merge-Metriken
 (Durchschn. Merge 4T 12h) (2 gemergte PRs in 30 T)

Beschreibung

See https://github.com/servo/unicode-bidi/pull/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 of UTF8 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.

Contributor Guide