Returns true if there are no arguments
| 53 | size_t size() const noexcept { return numArgs; } |
| 54 | /// Returns true if there are no arguments |
| 55 | bool empty() const noexcept { return numArgs == 0; } |
| 56 | |
| 57 | /// Returns an argument, or a nullptr if the index is out of range. |
| 58 | const choc::value::Value* operator[] (size_t index) const { return index < numArgs ? args + index : nullptr; } |
no outgoing calls
no test coverage detected