On Thursday, 1 February 2018 at 01:23:38 UTC, Adam D. Ruppe wrote:
In CS terms, it turned a constant-time edit into a O(n) operation, scaling linearly with the number of rows.
Well, there's line-oriented tabular data format, forgot the name (re*-something), it looks like definition list:
--- Member: front Description: gets front element Member: popFront Description: pops front element Member: empty Description: checks if empty --- Is logically a table: |Member |Description| +--------+-----------+ |front |gets front element| +--------+---------- |popFront|pops front element| +--------+---------- |empty |checks if empty| --------------------
