1BSON_DECIMAL128_FROM_STRING_W_LEN(3)libbsonBSON_DECIMAL128_FROM_STRING_W_LEN(3)
2
3
4

NAME

6       bson_decimal128_from_string_w_len - bson_decimal128_from_string_w_len()
7

SYNOPSIS

9          bool
10          bson_decimal128_from_string_w_len (const char *string,
11                                             int len,
12                                             bson_decimal128_t *dec);
13

PARAMETERS

15string: A string containing ASCII encoded Decimal128.
16
17len:  The  length  of  string  in  bytes, or -1 meaning the string is
18         null-terminated.
19
20dec: A bson_decimal128_t.
21

DESCRIPTION

23       Parses the string containing ascii encoded  Decimal128  and  initialize
24       the bytes in dec. See the Decimal128 specification for the exact string
25       format.
26

RETURNS

28       Returns true if valid Decimal128 string was provided,  otherwise  false
29       and dec will be set to NaN.
30

EXAMPLE

32          bson_decimal128_t dec;
33          bson_decimal128_from_string_w_len ("1.00", 4, &dec);
34          bson_decimal128_from_string_w_len ("1.00", -1, &dec);
35

AUTHOR

37       MongoDB, Inc
38
40       2017-present, MongoDB, Inc
41
42
43
44
451.17.6                           Jun 03, 20B2S1ON_DECIMAL128_FROM_STRING_W_LEN(3)
Impressum