Fisrt versin of the two levels indexing

Former-commit-id: 4d86483bc120e27cb6f5d2c216596d410274fc69
This commit is contained in:
Eric Coissac
2024-07-12 15:17:48 +02:00
parent 42c5881ddc
commit 4e4fac491f
9 changed files with 319 additions and 19 deletions

View File

@ -42,6 +42,8 @@ func InterfaceToBool(i interface{}) (val bool, err error) {
val = false
switch t := i.(type) {
case bool:
val = t
case int:
val = t != 0
case int8: