Fill method
Fills a tracked PP of count elements by calling
init for each index.
Implementation
PP Fill(int count, P Function(int) init, {String? key}) {
final pp = AtPtr(slotKey(key), count);
for (int i = 0; i < count; i++) indexSetterFunc(pp, i, init(i));
return pp;
}