belka-ew
belka-ew
@jdnavarro I’d be interested in maintaining graphql. I’ve already done some work on it, implemented block strings and escape sequences in the strings, improved parser error messages (with megaparsec though...
For what it's worth, here is my fork: https://github.com/caraus-ecms/graphql It's only a draft and should be treated as such. I'm experimenting currently, updating the structure, moving the stuff around. But...
[Dlib aswell](https://github.com/gecko0307/dlib)
@Hackerpilot, is it good to go now?
Anybody?
Three green bottles standing on the wall Three green bottles standing very tall And if one green bottle should accidentally fall There'll be two green bottles standing on the wall
Two green bottles standing on the wall Two green bottles standing very tall And if one green bottle should accidentally fall There'll be one green bottle standing on the wall
And some constraints are moved to the previous line: ```diff -auto ddemangle(T)(T line) - if (is(T : const(char)[])); +auto ddemangle(T)(T line) if (is(T : const(char)[])); const(char)[] demangleMatchUnderscoreMissing(T)(Captures!(T) m) - if...
> When exactly was the issue introduced and can we solve this by further adjusting that change? Here: https://github.com/dlang-community/dfmt/pull/554, d862d8aef1b46289be1fc7cf80809b70a734e8fa I tried to find a better solution but came up...
I'm a bit confused because it works differently with similar expressions. For example this one is left as is: ```d string main() { return duration.total("seconds").to!string; } ``` (Same code, but...