114 /// @return The number of XPathNode instances as a size_t in the set
115size_t size() const;
116
117 /// @brief Indexing operator.
118 /// @param index A size_t indicating which XPathNode you would like to retrieve
119 /// @return A const reference to the XPathNode you requested.
120 /// @warning Out of bounds errors are checked using assert. Exceptions will not be thrown, during debugging out of bounds access will abort the termination and in production code out of bounds accesses will cause undefined behavior.