Search

July 27, 2009
General »
...Hum, what's the difference between:

	int width
	{
		private int val;
		int opGet() { return val...
July 25, 2009
General »
...Property: Abstracted to a Noun/Adjective ("position" "width" "color" "turret" "ball")

Variable: *Special case of...
July 25, 2009
General »
...ideas

int width = 7         /// Property with storage
out                   { return width;           }
in(int   i)           { width = i...
July 24, 2009
General »
...here for open discussion:

-----------------------------
// Viable? Preferable?
int width = 7
get { return value; }
set { value = set...
July 24, 2009
General »
...Your first example property would become:

int width = int.init
{
    auto value;
    get { return value...
July 07, 2009
General »
...Unless you're programming in a proportional-width font the difference is pretty obvious.  Or...
June 12, 2009
General »
...where
'sT' and 'uT' have the same width, comparisons should be translated as
follows:
  's...
May 19, 2009
General »
...operator, and the editor uses a fixed-width font (like any good editor should).

If...
May 19, 2009
General »
...re looking at it in a fixed-width font, then I don't agree that...
May 18, 2009
General »
...forget manner:

    with (new WindowWidget) {
              parent = mainWin;
              width = 100;
              height = 100;
    }

That gives you something...
129 130 131 132 133 134 135 136 137 138 139
Next ›   Last »