static Cache> trueStatements_cached_cache = new Cache(func { collect(loadTruth(), "text") }); static L trueStatements_cached() { ret trueStatements_cached_cache!; } static void trueStatements_clearCache() { trueStatements_cached_cache.clear(); } // clear cache if older than x seconds static void trueStatements_clearCache(double seconds) { trueStatements_cached_cache.clear(seconds); }