Search

1 day ago
Announce »
...had been annoying was that the WASM interface was basically POSIX, but the compiler didn...
1 day ago
Issues »
https://issues.dlang.org/show_bug.cgi?id=14934

--- Comment #4 from dlangBugzillaToGithub <robert.schadek...
2 days ago
Issues »
...implement an interface in a bad way,
the resulting code using that interface will be...
3 days ago
General »
```d
import std;

interface ISerialize {
    void serialize();
}

struct thing{ }

class SerializableRoot {
    void serialize(this T...
3 days ago
Issues »
...a class is not derived from an interface (rather, it implements it). So, we could...
3 days ago
DIP Ideas »
...do you do a field in an interface.

And this is why I've stated...
3 days ago
General »
...t an alternative to runtime reflection.

```d
interface ISerialize {
	void serialize();
}

class SerializableRoot {
	void serialize...
3 days ago
DIP Ideas »
...get an actual variable, whereas with the interface, you wouldn't. It doesn't take...
3 days ago
Announce »
...noted that in the past the runtime interface was implemented as a set of C...
4 days ago
General »
...us/dotnet/api/system.runtime.serialization.iserializable) interface. There's also aspect-oriented approach, but...
« First   ‹ Prev
1 2
Next ›   Last »