Following up on this question about the difference between packed and unpacked vectors in SV, why would I ever want to use unpacked vectors?
Packed vectors have these advantages that unpacked vectors don't have:
- You can perform bit-wise operations on them
- You can perform arithmetic operations on them
- You can take slices of them
- You can copy them as a whole vector
- You can do anything you can with unpacked vectors (to the best of my knowledge)
What advantage do unpacked vectors have over packed vectors?