November 23, 2022 Learn » Proper way to override (swap) runtime and phobos. [feature request?] | |||
|---|---|---|---|
| |||
for development purposes. is there are correct way to somehow (partially or complete) override druntime... | |||
November 19, 2022 Learn » Re: Is defining get/set methods for every field overkill? | |||
|---|---|---|---|
| |||
...had never considered. If you need to swap out the implementation details later, you haven... | |||
November 06, 2022 Learn » Drawing a line code | |||
|---|---|---|---|
| |||
...std.algorithm : swap; if (x0>x1) swap(x0,x1); if (y0>y1) swap(y0,y1... | |||
October 20, 2022 Genel » Re: assumeUnique() kullanırken... | |||
|---|---|---|---|
| |||
...biriki.assumeUnique;/*/ import std.algorithm.mutation : swap; biriki[0].swap(biriki[1]);//*/ import std.stdio... | |||
August 15, 2022 Announce » New WIP DUB documentation | |||
|---|---|---|---|
| |||
...the same page, where you can simply swap between them whenever you like. If you... | |||
August 10, 2022 Learn » Re: My programs issues | |||
|---|---|---|---|
| |||
...X = INT(RND(1)*K)+1 800 SWAP CARD(K),CARD(X) 810 NEXT K... | |||
August 06, 2022 Learn » Re: Arbitrary precision decimal numbers | |||
|---|---|---|---|
| |||
...inline void swap(xlcmplx& a, xlcmplx& b) { swap(a.Re, b.Re); swap(a.Im... | |||
July 28, 2022 Learn » Re: Some user-made C functions and their D equivalents | |||
|---|---|---|---|
| |||
...strreverse(ch_sub2);
return ch_sub1;
}
/*********************************************/
void swap(T)(ref T x,ref T y... | |||
July 28, 2022 Learn » Re: Some user-made C functions and their D equivalents | |||
|---|---|---|---|
| |||
...the equivalent of these functions: ```D import std.algorithm: swap; import std.math: sgn, trunc; ``` | |||
July 24, 2022 Learn » Re: please help me to reverse a function call order | |||
|---|---|---|---|
| |||
...x[start].swap(x[i]);
x.permut(count, start + 1);
x[start].swap(x[i... | |||
Copyright © 1999-2021 by the D Language Foundation