FileCache

A simple file cache that can be used to avoid reading the same file multiple times. It stores its cached files as FileAndLines

Members

Functions

addOrGetFile
FileAndLines addOrGetFile(const(char)[] file)

Add or get a file from the file cache. If the file isn't part of the cache, it will be read from the filesystem. If the file has been read before, the cached file object will be returned

deinitialize
void deinitialize()
Undocumented in source. Be warned that the author may not have intended to support it.
initialize
void initialize()
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

_init
void _init()
Undocumented in source. Be warned that the author may not have intended to support it.

Static variables

fileCache
auto fileCache;
Undocumented in source.

Meta