November 18 General » Re: Just a friendly reminder about using arrays in boolean conditions | |||
|---|---|---|---|
| |||
...not null but no length:`", s, "`");
}
void main(string[] args)
{
v("hello");
v(null);
v... | |||
November 18 Issues » [Issue 24865] New: __traits(hasMember, T, "__xdtor") is true in some cases where there is no __xdtor member | |||
|---|---|---|---|
| |||
...issues.dlang@jmdavisProg.com
This code
---
void main()
{
import std.stdio;
import std.traits;
static... | |||
November 18 Issues » [Issue 24864] New: hasElaborateDestructor incorrectly true for structs with anonymous unions | |||
|---|---|---|---|
| |||
...issues.dlang@jmdavisProg.com
This code
---
void main()
{
import std.traits;
static struct Member
{
~this... | |||
November 17 General » Re: Just a friendly reminder about using arrays in boolean conditions | |||
|---|---|---|---|
| |||
...it:
```d
struct S
{
int x;
}
void main()
{
auto i = typeid(S).initializer;
assert(i... | |||
November 17 General » Re: Just a friendly reminder about using arrays in boolean conditions | |||
|---|---|---|---|
| |||
...not be printed:
import std.stdio;
void main ()
{
int [] arr;
struct V {
size_t length... | |||
November 17 DIP Ideas » Re: Objective-C Interop Extensions | |||
|---|---|---|---|
| |||
...pool leaving.
```d
void main() @autorelease {
}
```
Is equivalent to:
```d
void main() {
void* __generatedIdentifier1 = objc... | |||
November 16 DIP Ideas » Re: Objective-C Interop Extensions | |||
|---|---|---|---|
| |||
...return ret;
}
~this () { objc_autoreleasePoolPop(__p); }
}
void main()
{
auto x = AutoreleasePool();
}
```
does not?
I think... | |||
November 16 DIP Ideas » Objective-C Interop Extensions | |||
|---|---|---|---|
| |||
...entry point and wrap the user D main function, and threads created in D should... | |||
November 16 Issues » [Issue 24863] New: DMD v2.109.0 on OpenBSD out of memory when attempting to compile OneDrive for Linux | |||
|---|---|---|---|
| |||
...2.0 -L-lintl -L-ldl src/main.d src/config.d src/log.d... | |||
November 15 Issues » [Issue 24858] maxIndex but not minIndex sometimes returns the index as an array with a single element | |||
|---|---|---|---|
| |||
...import mir.ndslice: maxIndex, minIndex, map;
void main()
{
double[] u = [-9, 3, 2, 8, 4... | |||
Copyright © 1999-2021 by the D Language Foundation