diff --git a/README.md b/README.md index 5fe8b7d..edacc54 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,13 @@ of only 2 parameters would be retuned: // returns std::tuple auto [name, grade] = p.get_next(); ``` +Works with different types of conversions too: +```cpp +using student = std::tuple; + +// returns std::tuple +auto [name, grade] = p.get_next(); +``` To ignore a whole row, **ignore_next** could be used, returns **false** if **eof**: ```cpp bool parser::ignore_next();