I'm wondering if there's a difference in using size_t and container::size_type?
What I understand is size_t is more generic and can be used for any size_types..
Is container::size_type more optimized for a specific container though?
|
I'm wondering if there's a difference in using What I understand is Is |
||||
|
|
|
The standard containers define However, if you use a custom allocator a different underlying type could be used. So |
||||
|
|
All std containers use |
|||||||||
|
|
For Sometimes it's useful to have the exact type, so for example one knows where the type wraps around to (like, to Often i find i use |
||||
|
|