May 26, 2022 Genel » Re: GBS-1: in/out ile İstiklâl Marşımız | |||
|---|---|---|---|
| |||
...ConList(T) { // v2.2
struct Node {
T item; alias item this;
Node * next;
size_t... | |||
May 24, 2022 General » Re: Why is D unpopular, redux. | |||
|---|---|---|---|
| |||
...pseudocode, didn't test this):
```D
foreach (i; 0..10)
{ auto makeDelegate(size_t closureVar... | |||
May 24, 2022 Learn » Re: How to call destroy() in @nogc? | |||
|---|---|---|---|
| |||
...fakePureMalloc(size_t) @safe;
pragma(mangle, "calloc") void* fakePureCalloc(size_t nmemb, size_t size... | |||
May 24, 2022 Genel » Re: Öğrenmelik: opIndex() içermeyen yapı! | |||
|---|---|---|---|
| |||
...main()
{
struct BirYapı
{
int[] i;
int opIndex(size_t index) { return i[index]; }
}
auto b... | |||
May 24, 2022 Learn » How to call destroy() in @nogc? | |||
|---|---|---|---|
| |||
...T NEW(T, Args...)(auto ref Args args) /*@nogc*/ if (is(T == class)) {
enum size... | |||
May 23, 2022 Learn » mixin template | |||
|---|---|---|---|
| |||
...size_t line = __LINE__) {
super(msg, file, line);
}
this(string[] messages, string file = __FILE__, size... | |||
May 23, 2022 Genel » Beklenmedik ForwardRange Tekrarı | |||
|---|---|---|---|
| |||
...std.algorithm;
import std.range;
void main() {
size_t hesapAdedi = 0;
auto r = iota(10... | |||
May 19, 2022 General » Re: Should you be able to initialize a float with a char? | |||
|---|---|---|---|
| |||
...didn't vectorize things. If they couldn't...lower bound on their size. The RISC-V... | |||
May 19, 2022 General » Re: Please, can the langauge stop inferring scope and return for @trusted/@system? | |||
|---|---|---|---|
| |||
...ref assumeNonScope(T)(auto ref scope T arg)
{
return *(cast(T*) cast(size_t) &arg... | |||
May 19, 2022 General » Re: Please, can the langauge stop inferring scope and return for @trusted/@system? | |||
|---|---|---|---|
| |||
...T)
{
size_t length;
private @system T* _ptr;
// `@safe` read-only access to _ptr
T... | |||
Copyright © 1999-2021 by the D Language Foundation