Merge branch 'fix-doc' of https://github.com/kariya-mitsuru/container into kariya-mitsuru-fix-doc

This commit is contained in:
Ion Gaztañaga
2015-06-09 22:35:29 +02:00

View File

@@ -1293,11 +1293,10 @@ class stable_vector
return (this->index.empty()) ? this->cend() : iterator(node_ptr_traits::static_cast_from(this->index[n])); return (this->index.empty()) ? this->cend() : iterator(node_ptr_traits::static_cast_from(this->index[n]));
} }
//! <b>Requires</b>: size() >= n. //! <b>Requires</b>: begin() <= p <= end().
//! //!
//! <b>Effects</b>: Returns an iterator to the nth element //! <b>Effects</b>: Returns the index of the element pointed by p
//! from the beginning of the container. Returns end() //! and size() if p == end().
//! if n == size().
//! //!
//! <b>Throws</b>: Nothing. //! <b>Throws</b>: Nothing.
//! //!