Search

July 21
Learn »
...and valid `std::string` objects. Without emplacement new, `b` is not a valid `std::string...
July 21
Learn »
...again";
	*(std::string*)(b) = s;// Segfault here
}

void display(void* b) {
	std::string s = *(std...
July 21
Learn »
...a sequence does. I should really PR `std.typecons` to add a couple of examples...
July 21
DIP Development »
...all their problems? See https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3096...
July 20
General »
...introduce features for them. You can build std like a pyramid, with a system profile...
July 20
General »
...version=localmain
void foobar(int i){
    import std;
    i.writeln;
}

version(localmain){
    void main(){
        foobar...
July 20
Learn »
...tie` assignment, you can just do:
```d
	import std.meta;
	AliasSeq!(y, x) = tupRetFn().expand;
```
July 20
Issues »
...this issue:

- Update documentation.

  Fix Bugzilla 23487 - std.experimental.logger assigning FileLogger to
sharedLog no...
July 20
Learn »
...T[ind] = i;
	}
}

//Usage example:
import std.stdio, std.typecons;

auto tupRetFn() => tuple(47, "test...
July 20
DIP Ideas »
...but with immutable it can be.

```
import std.stdio;

public void main()
{
    immutable(char[]) world...
96 97 98 99 100 101 102 103 104 105 106 107
Next ›   Last »