Clear()
Clears the argument.
IsEmpty() const
Indicates whether or not the argument is empty (i.e., reached the end of argument list).
GetLength() const
Returns the length (number of characters) in the argument C string.
GetCString() const
Gets the argument as a C string.
GetCString()
Gets the argument as C string.
SetCString()
Sets the argument with a given C string.
operator() const
Overload the operator `==` to evaluate whether the argument is equal to a given C string. If the argument is empty (`IsEmpty()` is `true`) then comparing it using operator `==` with any C string will return false.
operator!=() const
Overload the operator `!=` to evaluate whether the argument is unequal to a given C string.
ParseAsUint8() const
Parses the argument as a `uint8_t` value. The number is parsed as decimal or hex format (if contains `0x` or `0X` prefix).
ParseAsUint16() const
Parses the argument as a `uint16_t` value. The number is parsed as decimal or hex format (if contains `0x` or `0X` prefix).
ParseAsUint32() const
Parses the argument as a `uint32_t` value. The number is parsed as decimal or hex format (if contains `0x` or `0X` prefix).
ParseAsUint64() const
Parses the argument as a `uint64_t` value. The number is parsed as decimal or hex format (if contains `0x` or `0X` prefix).
ParseAsInt8() const
Parses the argument as a `int8_t` value. The number is parsed as decimal or hex format (if contains `0x` or `0X` prefix). The string can start with `+`/`-` sign.
ParseAsInt16() const
Parses the argument as a `int16_t` value. The number is parsed as decimal or hex format (if contains `0x` or `0X` prefix). The string can start with `+`/`-` sign.
ParseAsInt32() const
Parses the argument as a `int32_t` value. The number is parsed as decimal or hex format (if contains `0x` or `0X` prefix). The string can start with `+`/`-` sign.
ParseAsBool() const
Parses the argument as a `bool` value. Zero value is treated as `false`, non-zero value as `true`.
ParseAsIp6Address() const
Parses the argument as an IPv6 address.
ParseAsIp4Address() const
Parses the argument as an IPv4 address.
ParseAsIp6Prefix() const
Parses the argument as an IPv6 prefix. The string is parsed as `{IPv6Address}/{PrefixLength}`.
ParseAs() const
ParseAsHexString() const
Parses the argument as a hex string into a byte array of fixed expected size. Returns `kErrorNone` only when the hex string contains exactly @p aSize bytes (after parsing). If there are fewer or more bytes in hex string that @p aSize, the parsed bytes (up to @p aSize) are copied into the `aBuffer` and `kErrorInvalidArgs` is returned.
ParseAsHexString()
ParseAsHexString()
CopyArgsToStringArray()
Copies the argument string pointers from an `Arg` array to a C string array.
GetArgsLength()
Returns the length of argument array, i.e. number of consecutive non-empty arguments.