JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr */ final class Vector implements Sequence { use Traits\GenericCollection; use Traits\GenericSequence; use Traits\Capacity; public const MIN_CAPACITY = 8; protected function getGrowthFactor(): float { return 1.5; } /** * @return bool whether capacity should be increased. */ protected function shouldIncreaseCapacity(): bool { return count($this) > $this->capacity; } }