You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simple counters - Number of push, pop, resize ops etc.
Perf mon integration - time taken to do things. Should be added into unit tests if possible.
Idea - Could be generated with a macro that embeds types and a type/name string. This should allow the struct to be generically parsed and printed for nice program output.
There are a few ways of doing this.
Idea - Could be generated with a macro that embeds types and a type/name string. This should allow the struct to be generically parsed and printed for nice program output.
make_stats(stats1, ch_word count1; ch_word count2; )
produces
struct {
ch_cstr* stats; //= "ch_word cont1; ch_word count2;"
ch_word count1; ch_word count2;
} stats1;
stats1.stats = "ch_word count1; ch_word_count2;";
which can then be generically interpreted later, by parsing the string.
The text was updated successfully, but these errors were encountered: