* vector of names of the functions */
| 86 | * vector of names of the functions |
| 87 | */ |
| 88 | CharacterVector functions_names(){ |
| 89 | size_t n = functions.size() ; |
| 90 | CharacterVector names( n ); |
| 91 | MAP::iterator it = functions.begin() ; |
| 92 | for( size_t i=0; i<n; i++, ++it){ |
| 93 | names[i] = it->first ; |
| 94 | } |
| 95 | return names ; |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * exposed class names |
no test coverage detected