Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 170 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 170 Bytes

memoize-dlang

Memoize struct or class properties (Dlang)

import memoize;

struct S {
    @property float _x() { return 1.5; }
    mixin CachedProperty!"x";
}