0

Let's assume I have a function that accepts a container and uses the .insert or .find on it, meaning it is either unordered associative container, or associative container.

Is there a common C++ name for this kind of containers?

4

1 回答 1

3

据我所知,向标准库添加概念的提议都没有概念化容器本身。他们概念化了迭代器和范围,以及使用这些概念的算法版本。容器可以将概念用于各种事物。

但是没有用于检测容器能力超出其范围容量的概念。

于 2018-07-27T15:45:47.377 回答