Search

May 02, 2012
General »
...int x; int y; }
struct Size { int width; int height; }

which I like because then...
April 27, 2012
General »
...for this is "full-width" (as opposed to the "half-width" of the typical European...
April 26, 2012
General »
...the CJK block) are
specified as "double-width", so if you're trying to do...
April 23, 2012
Issues »
...grammar cases
- %1$(%s %)
- %(%s %| %)
- %10(%s %)  // width doesn't seem to work

-- 
Configure issuemail...
April 21, 2012
Issues »
...be that the width specified for %s is taken to be the width to which...
April 18, 2012
General »
...void main() {
	int width = 80;

	foreach (line; stdin.byLine()) {
		while (line.length > width) {
			// Find longest...
April 18, 2012
General »
...code. If a line is longer then width but doesn't contain spaces, find will...
April 18, 2012
General »
...void main() {
	int width = 80;

	foreach (line; stdin.byLine()) {
		while (line.length > width) {
			// Find longest...
April 15, 2012
General »
...Units_and_prefixes

          Then, using a fixed width of 7 characters we have 3
          significant...
April 13, 2012
Learn »
...string like "%9.6e" to parse as width = 9, precision = 6, using exponential notation.

In...
98 99 100 101 102 103 104 105 106 107 108
Next ›   Last »