Difference between revisions of "Articles"
(D Builtin Rationale) |
(Template Comparison) |
||
Line 193: | Line 193: | ||
| alt1 = [https://github.com/PhilippeSigaud/D-templates-tutorial/blob/master/D-templates-tutorial.epub?raw=true EPUB] | | alt1 = [https://github.com/PhilippeSigaud/D-templates-tutorial/blob/master/D-templates-tutorial.epub?raw=true EPUB] | ||
| author = Philippe Sigaud | | author = Philippe Sigaud | ||
+ | }} | ||
+ | |||
+ | {{Article | ||
+ | | name = Comparison of C++ and D Templates | ||
+ | | url = https://dlang.org/articles/template-comparison.html | ||
}} | }} | ||
Line 262: | Line 267: | ||
| author = Steven Schveighoffer | | author = Steven Schveighoffer | ||
| published = 2011-2012 | | published = 2011-2012 | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
}} | }} | ||
Line 286: | Line 284: | ||
| author = Jonathan M Davis | | author = Jonathan M Davis | ||
| published = 2011 | | published = 2011 | ||
+ | }} | ||
+ | |||
+ | {{Article | ||
+ | | name = std.variant Is Everything Cool About D | ||
+ | | url = https://dlang.org/blog/2018/03/29/std-variant-is-everything-cool-about-d/ | ||
+ | | author = Jared Hanson | ||
+ | | published = March 29, 2018 | ||
}} | }} | ||
Revision as of 01:34, 24 December 2018
Contents
Beginning
- The Case for D - Andrei Alexandrescu - June 15, 2009
General
- Functional image processing in D - Vladimir Panteleev - Mar 21 2014
- Implementing Pure Functions - Walter Bright - June 15, 2011
- NaNs Just Don't Get No Respect - Walter Bright - Aug 16 2012
- Voldemort Types In D - Walter Bright - May 07 2012
- Increasing Compiler Speed by Over 75% - Walter Bright - July 25 2013
- DCompute: Running D on the GPU - Nicholas Wilson - October 30, 2017
- Faster Command Line Tools in D - Jon Degenhardt - May 24, 2017
- D as a Better C - Walter Bright - August 23, 2017
Memory Management
- Don’t Fear the Reaper - A Basic Introduction to the GC - Michael Parker - March 20, 2017
- Life in the Fast Lane - Introduction to Avoiding the GC and GC Profiling - Michael Parker - June 16, 2017
- Go Your Own Way (Part One: The Stack) - Michael Parker - July 7, 2017
- Go Your Own Way (Part Two: The Heap) (extended info) - Michael Parker - September 25, 2017
- Memory Safety - Jakob Øvrum - January 20 2016
Templates
Features
- Uniform Function Call Syntax - Walter Bright - Mar 28 2012
- Understanding Ranges (adapted from Chapter 6 of the book Learning D) - Michael Parker - December 2015
- D's Auto Decoding and You - Jack Stouffer - May 2016
- Inheriting Purity - Walter Bright - Feb 22 2012
- Unit Testing In Action - Mario Kröplin - Oct 20 2017
- Compile-Time Sort in D - Michael Parker - June 5, 2017
- D Slices - Steven Schveighoffer - 2011-2012
Modules
- std.variant Is Everything Cool About D - Jared Hanson - March 29, 2018
Architecture and Design
- Component Programming in D - Walter Bright - Oct 02 2012
- Component programming with ranges - H. S. Teoh - Aug 06 2013
Concurrency
- Concurrency in the D Programming Language - Andrei Alexandrescu - Jul 6, 2010
Operating System Development
Metaprogramming
- Have Your Efficiency, and Flexibility Too - Metaprogramming Techniques For No-Compromise Code - Nicholas Sabalausky
- Transforming an array/slice of structs into a struct of arrays/slices using metaprogramming - Laeeth Isharc for the D forums
Windows Specific
- DMD, Windows and C - Michael Parker - October 25, 2017
Interfacing to C
- Interfacing D with C: Getting Started - Michael Parker - Dec 05 2017