Hacker News new | ask | show | jobs
by MH15 1609 days ago
Using it as a cache for exported functions, structs, etc in already compiled files in my incremental compiler project for the language I am designing. The first time you compile a file its exported entities are added to the table, then if you don’t change the file you can skip compilation of said file.

Working well so far but I feel like it’s a little much for the job.