January 29, 2022 General » Re: Incremental garbage collection | |||
|---|---|---|---|
| |||
...truly bounded, the heap size needs to be...regular pointers. I don't know how the... | |||
January 29, 2022 General » Re: [OT] The Usual Arithmetic Confusions | |||
|---|---|---|---|
| |||
...or at least used to be) the `size_t` type. Which exists, because a memory... | |||
January 29, 2022 General » Re: [OT] The Usual Arithmetic Confusions | |||
|---|---|---|---|
| |||
...problem in C++ isn't that it is...blowing up the code size in ways that... | |||
January 28, 2022 Learn » Re: Can anyone provide an example of how D templates are overridable by global symbols? | |||
|---|---|---|---|
| |||
...example) this function doesn't identify itself in...that have the largest size (memory occupation)", etc... | |||
January 26, 2022 General » Re: Generic structural recursion | |||
|---|---|---|---|
| |||
...E[n], E, size_t n))
{
foreach (j; 0 .. __traits(getMember, T, field).length)
{
result... | |||
January 26, 2022 General » Generic structural recursion | |||
|---|---|---|---|
| |||
...structuralRecurse(alias fun, T, size_t n)(T t0, T t1, ... T tn) {
// invoke fun... | |||
January 26, 2022 Learn » Re: gdc or ldc for faster programs? | |||
|---|---|---|---|
| |||
...bytes
// e.g. int.sizeof
auto words(size_t typeSize) {
// This need not be recursive... | |||
January 25, 2022 Learn » Re: gdc or ldc for faster programs? | |||
|---|---|---|---|
| |||
...bytes
// e.g. int.sizeof
auto words(size_t typeSize) {
// This need not be recursive... | |||
January 25, 2022 General » Re: Why people dislike global variables so much while I find them so convenient? | |||
|---|---|---|---|
| |||
...of significant size and worked on by large teams of programmers. T -- Don't modify... | |||
January 25, 2022 Learn » How to create a function that behaves like std.stdio.writeln but prepends output with __FILE__:_LINE_ | |||
|---|---|---|---|
| |||
...g(T)(T t,string file=__FILE__,size_t line=__LINE__)
{
writeln(file,":",line," ",t... | |||
Copyright © 1999-2021 by the D Language Foundation