export function lastQuadOfList(store: Store, listEntry: Node): Quadruple | undefined {
  const it = orderedElementsOfList(store, listEntry);
  return it[it.length - 1];
}