exodist / Term-Table

Format a header and rows into a table
Other
6 stars 9 forks source link

Line breaking issues #5

Open haarg opened 7 years ago

haarg commented 7 years ago

Currently, the line breaking algorithm attempts to use Unicode::GCString to check lengths, but it does this on a per character basis. This also means it instanciates a Unicode::GCString object for each character.

It would be preferable to just use Unicode::LineBreak when it is available.