ot::Utils::CmdLineParser::ParseAsInt32() function
Parses a string as a `int32_t` value. The number in string is parsed as decimal or hex format (if contains `0x` or `0X` prefix). The string can start with `+`/`-` sign.
Arguments
aString
The string to parse.
aInt32
A reference to an `int32_t` variable to output the parsed value.
Return value
kErrorNone The string was parsed successfully. kErrorInvalidArgs The string does not contain valid number (e.g., value out of range).