Search

November 23
Issues »
...kdevel@vogtner.de

crash.d:
```
import std;

void main ()
{
   auto tup = tuple!(string, string, string...
November 22
Issues »
...struct S
{
    int n;
    @disable this(this);
}

void main()
{
    import std.stdio;

    S[1] arr...
November 22
Issues »
...std.stdio;

/// Example
/// ---
/// void main() {
///     foreach (i; 0..10) {
///             writeln("Hello, world!");
///     }
/// }
/// ---
void main() {

    writeln...
November 22
Learn »
...bitmanip.peek and friends to work on void[] since the underlying data is assumed to...
November 21
Learn »
...void`
    q.d(4): Error: expression `arr[0]` is `void` and has no value

void...
November 21
Learn »
...peek and it's failing because

`isForwardRange!(void[])` is false

That seems unexpected, am I...
November 21
Issues »
...existing.

I'm on the side of void* shouldn't be able to cast to...
November 22
DIP Ideas »
...LeInterface
	{
		void* this;
		@system this()
		{
			super.this();
			return this;
		}
	}
	 , new __anonclass2 : (LeClass, LeInterface
	{
		void* this...
November 21
Issues »
...in @system code of const(void*) not converting to void* - that is useful with some...
November 21
Genel »
...auto selfParse(char[] s) => s[9..$ - 2];
void show(string f = __FILE__,
          int line = __LINE...
1 2 3 4 5 6 7 8 9
Next ›   Last »