Open
Description
If my understanding is correct combine_keys
does simply point addition. Therefore for any set of keys combine_keys(&[k1, k2, k3, ... , ki, kj, ... kn]) == combine_keys(&[k1, k2, k3, ... , ki]).combine(combine_keys(&[kj, ... kn]))
which enables us to just split the slice and call the method multiple times. IIUC the reason to even have a special method is some optimized batch combining.