Does it have syntax hilight

I think that the "it" means the variable in the code. If so, the it
should have syntax-hilight
This commit is contained in:
fu7mu4 2021-03-18 18:43:22 +09:00
parent e39907b381
commit 957e300524

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: