mirror of
https://github.com/nlohmann/json.git
synced 2025-07-29 23:01:16 +03:00
Added parse() for streams.
This commit is contained in:
@ -1716,6 +1716,12 @@ class basic_json
|
||||
return parser(s).parse();
|
||||
}
|
||||
|
||||
/// deserialize from stream
|
||||
static basic_json parse(std::istream& i)
|
||||
{
|
||||
return parser(i).parse();
|
||||
}
|
||||
|
||||
/// deserialize from stream
|
||||
friend std::istream& operator>>(std::istream& i, basic_json& j)
|
||||
{
|
||||
|
Reference in New Issue
Block a user