Thread overview
Inplace toLower()
Mar 19, 2017
Nordlöw
Mar 19, 2017
ag0aep6g
Mar 20, 2017
Jacob Carlborg
March 19, 2017
Is there an in-place version of std.uni.toLower()

If not, how do I most elegantly construct one?
March 19, 2017
On 03/19/2017 10:32 PM, Nordlöw wrote:
> Is there an in-place version of std.uni.toLower()

toLowerInPlace
March 20, 2017
On 2017-03-19 22:32, Nordlöw wrote:
> Is there an in-place version of std.uni.toLower()
>
> If not, how do I most elegantly construct one?

I would recommend against toLower and toUpper as in-place versions. Not all letters can be converted in-place, i.e. they might require more storage.

-- 
/Jacob Carlborg