Search

November 23, 2022
Learn »
for development purposes. is there are correct way to somehow (partially or complete) override druntime...
November 19, 2022
Learn »
...had never considered. If you need to swap out the implementation details later, you haven...
November 06, 2022
Learn »
...std.algorithm : swap;
		if (x0>x1)
			swap(x0,x1);
		if (y0>y1)
			swap(y0,y1...
October 20, 2022
Genel »
...biriki.assumeUnique;/*/

  import std.algorithm.mutation : swap;
  biriki[0].swap(biriki[1]);//*/

  import std.stdio...
August 15, 2022
Announce »
...the same page, where you can simply swap between them whenever you like. If you...
August 10, 2022
Learn »
...X = INT(RND(1)*K)+1
800   SWAP CARD(K),CARD(X)
810 NEXT K...
August 06, 2022
Learn »
...inline void swap(xlcmplx& a, xlcmplx& b) { swap(a.Re, b.Re); swap(a.Im...
July 28, 2022
Learn »
...strreverse(ch_sub2);

        return ch_sub1;

}

/*********************************************/

void swap(T)(ref T x,ref T y...
July 28, 2022
Learn »
...the equivalent of these functions:
```D
import std.algorithm: swap;
import std.math: sgn, trunc;
```
July 24, 2022
Learn »
...x[start].swap(x[i]);
      x.permut(count, start + 1);
      x[start].swap(x[i...
1 2 3 4 5 6 7 8 9
Next ›   Last »