dlangBugzillaToGithub
dlangBugzillaToGithub
#### clumsycodemonkey commented on 2017-01-24T02:02:21Z ````markdown I can confirm this is still an issue in 2.071.2. ````
#### s.naarmann commented on 2018-10-14T14:55:49Z ````markdown This issue is still in 2.082.0. Are there technical problems (floating representation etc.) that require impurity? Otherwise, I'll make a PR that adds the...
#### s.naarmann commented on 2018-10-26T10:24:15Z ````markdown I see no problems to making fmod() pure. But with round(), here's the Phobos code: auto round(real x) @trusted nothrow @nogc { version (CRuntime_Microsoft)...
#### s.naarmann commented on 2018-10-26T11:48:04Z ````markdown D language spec, Pure Functions: https://dlang.org/spec/function.html#pure-functions In Point 8, it says: As a concession to practicality, a pure function can also: * read and...
#### s.naarmann commented on 2018-11-12T15:33:09Z ````markdown Sorry, I lack the time these weeks. I've unassigned myself. Here are my ideas: - Refactor setControlState into a string mixin (seems best w.r.t....
#### dmitry.olsh (@DmitryOlshansky) commented on 2016-09-03T19:51:57Z ````markdown (In reply to greensunny12 from comment #0) > Consider the following program, it will crash as it allocates _a lot_ of > memory...
#### greeenify commented on 2016-09-03T20:08:39Z ````markdown thanks a lot for looking at this so quickly :) > The problem is enum re = ... line. Enum means ctRegex!`((c)(s)?)?ti` is copy-pasted...
#### dlang-bugzilla (@CyberShadow) commented on 2017-07-21T09:00:44Z ````markdown I think the obvious reasonable improvement here is to improve the documentation, and mention to not use ctRegex with enum. Not sure much...
#### razvan.nitu1305 commented on 2021-03-31T09:20:31Z ````markdown PR: https://github.com/dlang/phobos/pull/7742 ````
#### bugzilla (@WalterBright) commented on 2021-04-19T15:52:25Z ````markdown You can use writefln!"%(%02X%)"(data); to get the desired result. (But %X might be useful as a shortcut, so leaving this open.) ````