September 13, 2022 Learn » Re: need help to translate C into D | |||
|---|---|---|---|
| |||
...enumerated values follow. } ``` Then you have to index with `mystructVar.data.ptr[i]` to avoid... | |||
September 08, 2022 Issues » [Issue 8577] static assert is triggered after tuple bounds check | |||
|---|---|---|---|
| |||
...code yields: onlineapp.d(2): Error: tuple index 1 exceeds 1 onlineapp.d(7): Error... | |||
September 07, 2022 Issues » [Issue 12685] Refused foreach index type to span the whole range of the type | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=12685 Nick Treleaven <nick@geany.org> changed... | |||
September 06, 2022 General » Re: Is there an 'rdmd' equivalent for C lang? | |||
|---|---|---|---|
| |||
...is one for C++: https://rawcdn.githack.com/root-project/cling/d59d27ad61f2f3a78cd46e652cd9fb8adb893565/www/index.html | |||
September 05, 2022 GDC » Re: Looking to make a GDC-12 mingw64 package | |||
|---|---|---|---|
| |||
...passing.d:64:5: warning: foreach: loop index implicitly converted from 'size_t' to 'int... | |||
August 30, 2022 Issues » [Issue 23310] Segfault on switch with global enum | |||
|---|---|---|---|
| |||
...index, _tls_callbacks
_tls_callbacks:
.quad 0
.global _tls_index
.bss
.balign 4
_tls_index... | |||
August 29, 2022 Issues » [Issue 22916] [dip1000] copy of ref return still treated as scope variable | |||
|---|---|---|---|
| |||
...array, not the array elements. If I index a `scope string[]` and get a `scope... | |||
August 29, 2022 Issues » [Issue 22916] [dip1000] copy of ref return still treated as scope variable | |||
|---|---|---|---|
| |||
...issue is not about whether my `Arr.index` function is ReturnRef-Scope or Ref-ReturnScope... | |||
August 26, 2022 Issues » [Issue 22916] [dip1000] copy of ref return still treated as scope variable | |||
|---|---|---|---|
| |||
...index() return scope {
return *ptr;
}
the compiler sees it as:
ref return scope T index... | |||
August 26, 2022 General » Re: What is the state of @property? | |||
|---|---|---|---|
| |||
...bool empty() { return index == len; }
char front() { return bytes[index]; }
void popFront() { ++index; }
}
version(1... | |||
Copyright © 1999-2021 by the D Language Foundation