July 14, 2022 Announce » DConf '22 Guest Keynote Details | |||
|---|---|---|---|
| |||
...2 keynote at: https://dconf.org/2022/index.html#day2 **Lua and Pallene** Lua is... | |||
July 14, 2022 Learn » Re: vectorization of a simple loop -- not in DMD? | |||
|---|---|---|---|
| |||
...wide profiler: https://perf.wiki.kernel.org/index.php/Main_Page And there are other... | |||
July 13, 2022 Announce » Blog post on extending attribute inference to more functions | |||
|---|---|---|---|
| |||
...if you want to look down the index, you can find a lot of things... | |||
July 13, 2022 General » Re: Reflections on using Go instead of D | |||
|---|---|---|---|
| |||
...files: https://doc.rust-lang.org/std/index.html Having an amount of doc generation... | |||
July 12, 2022 Learn » Re: How to dynamically calculate an index? | |||
|---|---|---|---|
| |||
...This little snippet does the trick:
int index;
foreach(i, v; a) {
int t = v... | |||
July 12, 2022 Learn » Re: How to dynamically calculate an index? | |||
|---|---|---|---|
| |||
...3) {
int index = a[0] * dims[1] * dims[2] + a[2];
return data[index];
}
else... | |||
July 12, 2022 Learn » How to dynamically calculate an index? | |||
|---|---|---|---|
| |||
...calculate the index of any element (e.g. [1, 0, 6]) as follows:
index = 1... | |||
July 09, 2022 General » Comment and Thank you to Walter Bright | |||
|---|---|---|---|
| |||
...do away With memory leaks and array index errors, making it a easy to use... | |||
July 06, 2022 Issues » [Issue 22580] [Arrays] | |||
|---|---|---|---|
| |||
...0..$]`, where $ is the array length. The index operator is `[1]` for example. It doesn... | |||
July 01, 2022 General » Syntax sugar for {} with structs | |||
|---|---|---|---|
| |||
...this recently
```D
void reset()
{
state.end_index = 0;
state.buffer_list = SinglyLinkedList!(ubyte[])();
}
```
While... | |||
Copyright © 1999-2021 by the D Language Foundation