private function calculateEstimatedFootprint(array $from, array $to) : float|int { $itemSize = PHP_INT_SIZE === 4 ? 76 : 144; return $itemSize * min(count($from), count($to)) ** 2; }