I know I can reference the number of entries on a list using the following code:
int entriesOnList = List("List1").entries().length > 0 ? 1 : 0;
How can I reference the number of entries on this list in a specific partition? For example, the number of entries in List1 that are in partition 1?