July 11, 2022 Learn » Re: How to obtain Variant underlying type? | |||
|---|---|---|---|
| |||
...import std.variant : Variant;
size_t[] shape(Variant v) {
size_t[] s;
while (cast(TypeInfo... | |||
July 10, 2022 Learn » Re: How to obtain Variant underlying type? | |||
|---|---|---|---|
| |||
...variant : Variant;
size_t[] shape(Variant v) {
import std.variant : VariantException;
size_t[] s;
try... | |||
July 08, 2022 Issues » [Issue 23232] New: Static array limits are incorrect for -m64 | |||
|---|---|---|---|
| |||
...m32, the static array size is limited to...long.max / 2) - 1] value; // doesn't compile } ``` -- | |||
July 07, 2022 Learn » Re: Background thread, async and GUI (dlangui) | |||
|---|---|---|---|
| |||
...http.onProgress((size_t dl, size_t dln, size_t ul, size_t uln) {
if... | |||
July 07, 2022 Issues » [Issue 23184] importC: array length macro doesn't compile | |||
|---|---|---|---|
| |||
...This works when I try it (though size_t was undefined). In general, please provide... | |||
July 06, 2022 Learn » Re: Background thread, async and GUI (dlangui) | |||
|---|---|---|---|
| |||
...http.onProgress((size_t dl, size_t dln, size_t ul, size_t uln) {
if... | |||
July 04, 2022 Announce » Re: The D Programming Language Vision Document | |||
|---|---|---|---|
| |||
@noheap is not so necessary, at least for aggregates we have `@disable new(size_t);` | |||
July 01, 2022 Issues » [Issue 23226] New: druntime does not compile with -preview=nosharedaccess | |||
|---|---|---|---|
| |||
...core.bitop:
struct BitRange {
const(size_t) bits;
this(const(size_t)) {
bits++ ;
}
}
N softBitswap()() {
}
-- | |||
June 30, 2022 General » Re: Compile-time global mutables | |||
|---|---|---|---|
| |||
...can already do that. ```d enum counter(size_t x = [__traits(allMembers, mixin(__MODULE__))].length... | |||
June 28, 2022 General » Re: private(this) vs LINT | |||
|---|---|---|---|
| |||
...size_t sz;
public:
this(size_t s)
{
elem = cast(size_t*)new size_t... | |||
Copyright © 1999-2021 by the D Language Foundation