August 28 Issues » [Issue 24717] alias edge cases with tupleof | |||
|---|---|---|---|
| |||
...implicit ref declarations:
struct S
{
int i;
char c;
}
void main()
{
S s = {2, 'c... | |||
August 28 General » Re: This needs to be fixed | |||
|---|---|---|---|
| |||
...d
import std;
struct S
{
int i;
char c;
}
void main()
{
S s = {2, 'c... | |||
August 27 Genel » Re: Onaltılık Dönüştürme (sadece 9, 7 ve sıfır ile) | |||
|---|---|---|---|
| |||
...range : join;
import std.conv : to;
char c1 = '\0';
char c2 = OnlyNumbers ? '\0' : '0';
static... | |||
August 26 General » Re: DIP1000 observation | |||
|---|---|---|---|
| |||
...system` or `@trusted` functions: ```D void f(char[] str) @safe; // parameter `str` is not marked... | |||
August 26 General » Re: ImportC and nothrow/@nogc? | |||
|---|---|---|---|
| |||
...takes char pointers, not arrays, unlike `toStringz`. So this would compile: `fopen(new char('u... | |||
August 26 General » Re: Tell us your DIP1000 woes | |||
|---|---|---|---|
| |||
...class Token {}
struct Tokenizer
{
char[] input;
Token front;
}
Token getToken() @safe
{
char[5] input = "1... | |||
August 26 General » Re: ImportC and nothrow/@nogc? | |||
|---|---|---|---|
| |||
...kinda contentious ones, like: FILE fopen(char* filename, char* mode); Now, clearly there's a... | |||
August 22 Genel » Re: ConsArray | |||
|---|---|---|---|
| |||
...desteği mükemmel: ```d //alias strings = immutable(char[])[];/* alias strings = char[][];//*/ strings str; foreach(s; [ "Kaan... | |||
August 19 General » Re: Override assert handler | |||
|---|---|---|---|
| |||
...the function: ``` core.exception._d_assertp(immutable(char*) file, uint line); ``` is called. That forwards... | |||
August 17 Learn » Re: create fixed length string of characters | |||
|---|---|---|---|
| |||
...wrong with using
the char[60] directly?
import std.stdio;
immutable char[60] a = '-';
void... | |||
Copyright © 1999-2021 by the D Language Foundation