On Tuesday, 30 June 2020 18:04:24 PDT d3fault wrote:
> or should we also remove QString::toLower, since one can use std
> facilities to accomplish the same thing like this:
> QString data = "Abc";
> std::transform(data.begin(), data.end(), data.begin(),
>     [](unsigned int c){ return QChar::toLower(c); });

Invalid argument.

Strings are not a set or collection of characters and Unicode transformations 
aren't homogeneously applied to individual code points.

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel System Software Products



_______________________________________________
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest

Reply via email to