Re: Inplace toLower()

2017-03-20 Thread Jacob Carlborg via Digitalmars-d-learn

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


Re: Inplace toLower()

2017-03-19 Thread ag0aep6g via Digitalmars-d-learn

On 03/19/2017 10:32 PM, Nordlöw wrote:

Is there an in-place version of std.uni.toLower()


toLowerInPlace


Inplace toLower()

2017-03-19 Thread Nordlöw via Digitalmars-d-learn

Is there an in-place version of std.uni.toLower()

If not, how do I most elegantly construct one?