Files
toml11/toml
ToruNiina d88521d63c feat: enable to change region of value
To allow the following toml file, we need to replace the region after
the more precise region is found.
```toml
[a.b.c]
d = 42
[a]
e = 2.71
```
If the precise region (here, [a]) is found, the region of `a` should be
`[a]`, not `[a.b.c]`. After `[a]` is defined, toml does not allow to
write `[a]` twice. To check it, we need to replace the region of values
to the precise one.
2019-03-04 15:01:28 +09:00
..
2018-12-26 13:38:01 +09:00
2018-12-13 20:44:10 +09:00
2018-12-13 20:44:10 +09:00
2018-12-27 15:58:50 +09:00
2018-12-13 20:44:10 +09:00
2018-12-13 20:44:10 +09:00
2018-12-13 20:44:10 +09:00
2018-12-13 20:44:10 +09:00
2019-01-30 17:06:23 +01:00