well-in-that-case

Results 5 comments of well-in-that-case

Seems like a niche enough operation for `filter` + another table to handle tbh

Could get excessive. Lots of people who'll keep useful functions around but unused, for example.

Could consider table.values() instead that returns an array of values

```lua local assert = require("assert") local t = { a = 1, b = 2, c = 3 } assert.equals({ 1, 2, 3 }, t:values()) ``` Then you could query...

INI is too common of a format. There is going to be versions of it we can't support because of the lack of specification — there's some really cursed ones...