dlangBugzillaToGithub
dlangBugzillaToGithub
#### greensunny12 commented on 2018-03-31T15:26:52Z ````markdown > See Vose's Alias Method: Here's my implementation for mir: https://github.com/libmir/mir/blob/da76cf406d06957e472b9ba90b4c90b917480cb9/source/mir/random/discrete.d tl;dr: - std.random's methods should be available as Generators / "Variables" - Until...
#### lovelydear commented on 2012-04-19T08:54:38Z ````markdown See related 7487 and 7490 ````
#### bearophile_hugs commented on 2012-02-03T15:41:44Z ````markdown This seems related, DMD 2.058head: import std.algorithm, std.array; void main() { auto s1 = "hello"; auto m1 = map!(c => c)(s1); auto a1 =...
#### hsteoh commented on 2012-12-21T07:45:21Z ````markdown Seems to be related to bug 3825. ````
#### dlang.org commented on 2016-08-18T08:22:24Z ````markdown @hsteoh: I don't believe it is related to 3825; 3825 has been apparently fixed (for d2) in 2013 (q.v.), but the behaviour described by...
#### dlang.org commented on 2016-08-18T08:30:29Z ````markdown ... having said that, the double behaviour is explicitly brought up in the pull request discussion pertaining to 3825: see quickfur's first comment on...
#### stanislav.blinov commented on 2018-11-22T18:09:24Z ````markdown Now that we have an .update() for AAs, this needs to be resolved. This test should pass: unittest { double[int] aa; aa[0]++; import std.math;...
#### dlang (@Vild) commented on 2019-08-27T18:34:04Z ````markdown In my oppinion aa[0]++ should behave exactly the same as aa[0] = aa[0]+1. Therefore in my oppinion a correct unittest would be: unittest...
#### kinke commented on 2020-08-19T16:23:37Z ````markdown That's very subjective - I find it crystal-clear, especially with the 'opaque' hint - it's just like an opaque `struct S;` declaration. Sometimes, a...
#### dlang-bot commented on 2023-02-01T18:56:41Z ````markdown @Mateiuss created dlang/dlang.org pull request #3512 "Fix Issue 21178" fixing this issue: - Fix Issue 21178 https://github.com/dlang/dlang.org/pull/3512 ````