parse overloads
Synopses
Declared in <bdlt_fixutil.h>
Parse a FIX date string_view into a Date.
Parse a FIX date‐tz string_view into a DateTz.
Parse a FIX datetime string_view into a Datetime.
Parse a FIX datetime‐tz string_view into a DatetimeTz.
static
int
parse(
DatetimeTz* result,
std::string_view const& string);
Parse a FIX time string_view into a Time.
Parse a FIX time‐tz string_view into a TimeTz.
Parse a FIX date string of the given length into a Date.
Parse a FIX date‐tz string of the given length into a DateTz.
Parse a FIX datetime string of the given length into a Datetime.
Parse a FIX datetime‐tz string of the given length into a DatetimeTz.
static
int
parse(
DatetimeTz* result,
char const* string,
int length);
Parse a FIX time string of the given length into a Time.
Parse a FIX time‐tz string of the given length into a TimeTz.
Return Value
0 on success, non‐zero on failure
Parameters
Name |
Description |
result |
destination for the parsed value |
string |
FIX date string to parse |
length |
number of characters to parse |
Created with MrDocs