We can add ```haskell pattern (:+) :: Char -> Text -> Text pattern x :+ xs <- (uncons -> Just (x, xs)) where x :+ xs = cons x xs ``` which mimics what `(:)` does for lists. Presumably it could provide an easier migration route from `String` to `Text`.
We can add
which mimics what
(:)does for lists. Presumably it could provide an easier migration route fromStringtoText.