digitalmars.D.learn - Inplace toLower()
- =?UTF-8?B?Tm9yZGzDtnc=?= (2/2) Mar 19 2017 Is there an in-place version of std.uni.toLower()
- ag0aep6g (2/3) Mar 19 2017 toLowerInPlace
- Jacob Carlborg (5/7) Mar 20 2017 I would recommend against toLower and toUpper as in-place versions. Not
Is there an in-place version of std.uni.toLower() If not, how do I most elegantly construct one?
Mar 19 2017
On 03/19/2017 10:32 PM, Nordlöw wrote:Is there an in-place version of std.uni.toLower()toLowerInPlace
Mar 19 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
Mar 20 2017