dlangBugzillaToGithub

Results 283 comments of dlangBugzillaToGithub

#### nick (@ntrel) commented on 2024-11-27T10:41:26Z ````markdown Possibly related to: https://github.com/dlang/ddox/issues/248 ````

#### turkeyman commented on 2018-06-16T21:12:45Z ````markdown I also suggest, for each operator as it is introduced, demonstrate the 'canonical' signature; what is the 'most standard/correct' way to specify these functions...

#### turkeyman commented on 2018-06-16T21:14:12Z ````markdown Convenience link: https://dlang.org/spec/operatoroverloading.html ````

#### nick (@ntrel) commented on 2022-12-10T17:44:18Z ````markdown > Press Ctrl-F and type "opSlice", scroll the highlighted text, try and understand how to implement a slicing operator properly. Note that the...

#### nick (@ntrel) commented on 2022-12-11T13:55:01Z ````markdown This one adds examples for opCmp, opOpAssign, s.opIndex(s.opSlice(...)). https://github.com/dlang/dlang.org/pull/3467 ````

#### nick (@ntrel) commented on 2022-12-11T16:30:37Z ````markdown > try and understand how to implement a slicing operator properly. Note that the first contact you see looks like this: > `-a[i..j]...

#### dlang-bot commented on 2023-07-03T18:36:14Z ````markdown @ntrel updated dlang/dlang.org pull request #3652 "[spec] Improve opCast & `opCast!bool` docs" mentioning this issue: - Part of Issue 18998 - Improve Operator Overloading...

#### dlang-bot commented on 2023-07-10T11:07:51Z ````markdown dlang/dlang.org pull request #3652 "[spec] Improve opCast & `opCast!bool` docs" was merged into master: - a6cfd0db7b7f74ec27c2d908d017d82e5355023b by Nick Treleaven: Part of Issue 18998 -...

#### dfj1esp02 commented on 2016-09-22T16:01:17Z ````markdown struct S { byte[3000] a,b; } void f(ref S s) { g(s.b); } void g(ref byte[3000] b) { b[2000]=0; } Similar with slicing: void...

#### schveiguy (@schveiguy) commented on 2016-09-22T18:44:57Z ````markdown Yes, this is what I meant by "There are still ways to access data beyond one page without incurring a check with this...