dlangBugzillaToGithub

Results 67 comments of dlangBugzillaToGithub
trafficstars

#### bugzilla (@WalterBright) commented on 2019-12-21T10:13:23Z ````markdown I'm not sure at what place in the docs you'd like to see these functions mentioned. So I was not able to decide,...

#### schveiguy (@schveiguy) commented on 2019-12-21T18:57:18Z ````markdown So since this was opened (11 years ago!), the .sort property is gone. And AAs have been adjusted to require only opEquals and...

#### schveiguy (@schveiguy) commented on 2019-12-21T19:04:22Z ````markdown Actually, may be good to elaborate on the points in the AA docs. I found that defining a toHash function without const makes...

#### bearophile_hugs commented on 2013-11-12T16:02:54Z ````markdown (In reply to comment #0) > string[] words = split(cast(string) read(filename)); Better to use UFCS. > foreach (w; counts.keys.sort) Built-in sort is deprecated!! ````

#### chuck commented on 2013-11-13T10:19:40Z ````markdown Is this what you had in mind? string[] words = (cast(string)(read(filename))).split(); int[string] counts; foreach (word; words) ++counts[word]; foreach (w; sort(counts.keys)) writefln("%s: %d", w, counts[w]);...

#### bugzilla (@WalterBright) commented on 2019-12-14T11:02:25Z ````markdown I neither found any jumpTo section nor prominent deprecated features. This has probably been fixed. If not, could you please provide an example?...

#### bugzilla (@WalterBright) commented on 2019-12-14T12:44:15Z ````markdown Sorry, stupid me. Meanwhile I found the jumpTo sections and deprecated sections are still in there (see std.zip, diskNumber; in master, not yet...