Merge pull request #79 from fu7mu4/it-is-code

Does it have syntax hilight
This commit is contained in:
Nemanja Trifunovic 2021-03-28 11:38:21 -04:00 committed by GitHub
commit 7d17aed953
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -118,7 +118,7 @@ bool valid_utf8_file(const char* file_name)
}
```
Because the function `utf8::is_valid()` works with input iterators, we were able to pass an `istreambuf_iterator` to it and read the content of the file directly without loading it to the memory first.
Because the function `utf8::is_valid()` works with input iterators, we were able to pass an `istreambuf_iterator` to `it` and read the content of the file directly without loading it to the memory first.
Note that other functions that take input iterator arguments can be used in a similar way. For instance, to read the content of a UTF-8 encoded text file and convert the text to UTF-16, just do something like: