We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe5062a commit 309c3d8Copy full SHA for 309c3d8
README.md
@@ -281,7 +281,8 @@ int main() {
281
auto longest_prefix = map2.longest_prefix("apple juice");
282
if(longest_prefix != map2.end()) {
283
// {apple, 1}
284
- std::cout << longest_prefix.key() << std::endl;
+ std::cout << "{" << longest_prefix.key() << ", "
285
+ << *longest_prefix << "}" << std::endl;
286
}
287
288
// Prefix erase
0 commit comments