GroupStatKey
Specialised StatKey for nested-group slots. The keys field exposes the nested schema's own StatKeys by reference, so dotted lookup composes:
object Outer : StatSchema() {
val auth by group(object : StatSchema() {
val successes by series(Sum)
})
}
val total: SumResult = result[Outer.auth][Outer.auth.keys.successes]Content copied to clipboard