CachedProperty

The following code makes cached (memoized) property f

class {
    @property string _f() { ... }
    mixin CachedProperty!"f";
}
mixin template CachedProperty (
string name
string baseName = '_' ~ name
)

Meta