mirror of
https://github.com/nlohmann/json
synced 2024-11-23 20:40:08 +00:00
Added parse() for streams.
This commit is contained in:
parent
2855c70c27
commit
87746280ca
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user