1/**
2 * @file   rubystdautodoc.swg
3 * @author gga
4 * @date   Wed May  2 17:20:39 2007
5 *
6 * @brief  This file contains autodocs for standard STL functions.
7 *
8 *
9 */
10
11//
12// For STL autodocumentation
13//
14AUTODOC(c_str, "Convert class to a String representation");
15AUTODOC(begin, "Return an iterator to the beginning of the $class");
16AUTODOC(end, "Return an iterator to past the end of the $class");
17AUTODOC(rbegin, "Return a reverse iterator to the beginning (the end) of the $class");
18AUTODOC(rend, "Return a reverse iterator to past the end (past the beginning) of the $class");
19AUTODOC(length, "Size or Length of the $class");
20AUTODOC(replace, "Replace all or a portion of the $class");
21AUTODOC(resize, "Resize the size of the $class");
22AUTODOC(capacity, "Reserved capacity of the $class");
23AUTODOC(reserve, "Reserve memory in the $class for a number of elements");
24AUTODOC(erase, "Delete a portion of the $class");
25AUTODOC(max_size, "Maximum size of elements allowed in the $class");
26AUTODOC(iterator, "Return an iterator to the $class");
27AUTODOC(empty, "Check if the $class is empty or not");
28AUTODOC(rfind, "Find an element in reverse usually starting from the end of the $class");
29AUTODOC(assign, "Assign a new $class or portion of it");
30AUTODOC(front, "Return the first element in $class");
31AUTODOC(back, "Return the last element in $class");
32AUTODOC(second, "Return the second element in $class");
33AUTODOC(push_front, "Add an element at the beginning of the $class");
34AUTODOC(push_back, "Add an element at the end of the $class");
35AUTODOC(pop_front, "Remove and return element at the beginning of the $class");
36AUTODOC(pop_back, "Remove and return an element at the end of the $class");
37AUTODOC(clear, "Clear $class contents");
38