return the count of element in the vector
| 188 | } |
| 189 | // return the count of element in the vector |
| 190 | uint32_t KeyListOpsMethods::getCount() { |
| 191 | return _keyList->size(); |
| 192 | } |
| 193 | // return a delimited list of the unique elements |
| 194 | const string &KeyListOpsMethods::getDistinct() { |
| 195 | if (empty()) return _nullVal; |