You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the online docs of std.conv.parse:
Target parse(Target, Source)(ref Source s, dchar lbracket = '[', dchar rbracket = ']', dchar comma = ',');
Target parse(Target, Source)(ref Source s, dchar lbracket = '[', dchar rbracket = ']', dchar comma = ',');
Parses an array from a string given the left bracket (default '['), right bracket (default ']'), and element seprator (by default ',').
Target parse(Target, Source)(ref Source s, dchar lbracket = '[', dchar rbracket = ']', dchar keyval = ':', dchar comma = ',');
Parses an associative array from a string given the left bracket (default '['), right bracket (default ']'), key-value separator (default ':'), and element seprator (by default ',').
If the lbracket and rbracket arguments become strings, no brackets can be expressed with empty strings.
The text was updated successfully, but these errors were encountered:
bearophile_hugs reported this on 2012-06-21T12:24:03Z
Transfered from https://issues.dlang.org/show_bug.cgi?id=8279
CC List
Description
The text was updated successfully, but these errors were encountered: