Brian Schott
Brian Schott
Since the TreeMap structure guarantees an ordering for its contents, it would be very useful to have `front` `popFront`, `back`, and `popBack` methods to get the largest or smallest items...
Some containers have `insert` methods that return `void`, others `size_t`, or `T*` and so on. Figure out if it makes sense to make these standardized.
Given the following code (vertical pipe is the cursor position) ``` struct SomeStruct(T) { T field; } SomeStruct!(float) bar; bar.field.| ``` DCD should show completions such as "max", "epsilon", etc.
Create a Notepad++ plugin for DCD. Notepad++ uses Scintilla, so the behavior should be very similar to the Textadept plugin. http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Development
https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1030.md
http://forum.dlang.org/thread/[email protected] The `Symbol` rule only appears as an alternative to the `Type`, `AssignExpression`, or `Expression` rules, but the `Symbol` rule is a subset of these other rules. Because of this,...
This causes behavior to differ between debug and release builds.