lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> I wrote a little lua library that can read keys, which are dot encoded
> ("one.two.three") with some minimal checking:

That is interesting. We wrote a similar utility library some time ago that is available here https://github.com/SierraWireless/luasched/blob/master/utils/path.lua

It is a little bit more generic 'path' library: you have get/set on a tree as above, and some other utilitarian functions on path variables.

This util lib is part of our luasched framework, but can be used independently, of course.

Cuero