C++ 具名要求: LegacyContiguousIterator

来自cppreference.com
< cpp‎ | named req
 
 
 

遗留连续迭代器 (LegacyContiguousIterator) 遗留迭代器 (LegacyIterator) ,其所指向的逻辑相邻元素也在内存中物理上相邻。

指向数组元素的指针满足遗留连续迭代器 (LegacyContiguousIterator) 的所有要求。

要求

以下情况下,类型 It 满足遗留连续迭代器 (LegacyContiguousIterator)

并且,对于每个

  • a,为 It 类型的可解引用迭代器
  • n,为整型值

使得

  • a + n 为有效的可解引用迭代器值

标准库

下列标准库类型是遗留连续迭代器 (LegacyContiguousIterator)

参阅