first stab at inspectvalue

This commit is contained in:
Christien Rioux 2024-03-09 22:22:25 -05:00
parent ca65d12836
commit 9bccb59f77
25 changed files with 492 additions and 260 deletions

View file

@ -38,7 +38,7 @@ extension ValidateSMPL on DHTSchemaSMPL {
return true;
}
int subkeyCount() => members.fold(0, (acc, v) => acc + v.mCnt) + oCnt;
int subkeyCount() => members.fold(oCnt, (acc, v) => acc + v.mCnt);
}
extension Validate on DHTSchema {