A binary operator to allow appending with a Grapheme.
auto t1 = typeof(this)("Test "); auto t2 = t1 ~ Grapheme("A"); assert(t2.rawString == "Test A"); auto t3 = Grapheme("B") ~ t1; assert(t3.rawString == "BTest ");
See Implementation
A binary operator to allow appending with a Grapheme.