Search

March 14, 2022
General »
...serialize() {
        return _stringof;
    }
 }

 class Derived : Base {

 }

 void main() {
    Base b = new Derived();
    assert(b.serialize...
October 19, 2021
General »
...an option a virtual machine should be able to serialize everything or at least RAM.
October 19, 2021
General »
...are being this dismissive. The inability to serialize static variables scoped inside functions is clearly...
October 19, 2021
General »
You can't serialize everything. The standard approach to serialization is to use DTOs - types...
October 14, 2021
Announce »
...I approach serialization is "how would I serialize this thing if I wrote the code...
October 14, 2021
General »
...far so good, I’m now able to serialize/deserialize game objects (including private fields), and...
October 05, 2021
Issues »
...Mutex serialize;
shared static this() {
    serialize = new shared Mutex;
}

extern(C) void* foo(void*)
{
    serialize...
October 05, 2021
Issues »
...Mutex serialize;
shared static this() {
    serialize = new shared Mutex;
}

extern(C) void* foo(void*)
{
    serialize...
October 04, 2021
General »
...is(T == struct)) {
			... // serialize structs here
		} else static if (is(T == class)) {
			... // serialize structs here...
September 20, 2021
General »
...s["a"]=="b");
```
That is, you can serialize a hashtable into anything with a relatively...
1 2 3 4 5 6
Next ›   Last »