The OpenD Programming Language

writeableSerializables

Retreive all writeable serializables for T. This includes properties and setters.

template writeableSerializables () {}

Examples

static struct A
{
    @serializable void a(int value) { _a = value; }
    @serializable int b;
    private int _a;
}
struct A
{
    @serializable int a;
    @serializable void foo(int s);
}

Meta