Silk.NETS
Silk.NET3y ago
Kai

```zig function ReferenceCounted(comptime T type): type { return struct { counter: std.a

function ReferenceCounted(comptime T type): type {
    return struct {
        counter: std.atomic.Atomic(u16),
        inner_pointer: *T
    };
}
Was this page helpful?