Search

July 22, 2010
General »
...Dcollections has a feature where you can swap the underlying implementation for something completely different...
July 21, 2010
General »
...auto k = f(r);
    while (k != r)
    {
      swap(r, k);
      k = f(k);
    }
}

This doesn...
July 17, 2010
Genel »
...zaman harcanmamış oluyor.
        *
        * (swap std.algorithm'de tanımlıdır ve her türle çalışır)
        */
       swap(dizi, sağdaki...
July 16, 2010
Learn »
...a simple string checksum to the front? Then swap classinfo.name for f(classinfo.name).
July 02, 2010
Phobos »
...nested function that took reference parameters (ie. swap) wasn't inlined either, so I changed...
June 22, 2010
General »
...overlap.charset);
                negated = false;
                rhs.negated = false;
                swap(charset, rhs.charset);
                normalise();
                overlap.normalise();
                rhs...
June 22, 2010
General »
...overlap.charset);
                negated = false;
                rhs.negated = false;
                swap(charset, rhs.charset);
                normalise();
                overlap.normalise();
                rhs...
June 22, 2010
General »
...overlap_._charset);
				_negated = false;
				rhs_._negated = false;
				swap(_charset, rhs_._charset);
				normalise();
				overlap_.normalise();
				rhs...
June 20, 2010
General »
...range: walkLength, isForwardRange, hasSwappableElements;
import std.algorithm: swap, binaryFun;
import std.c.stdlib: malloc;
import...
June 20, 2010
General »
...if (binaryFun!less(right.front, left.front)) {
	swap(left.front, right.front);
	swapped = true;
    }
}

Quite...
118 119 120 121 122 123 124 125 126 127 128
Next ›   Last »