You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brpc.apache.org by GitBox <gi...@apache.org> on 2021/07/17 13:14:58 UTC

[GitHub] [incubator-brpc] wasphin commented on a change in pull request #1484: Add FlatMap example code

wasphin commented on a change in pull request #1484:
URL: https://github.com/apache/incubator-brpc/pull/1484#discussion_r671696210



##########
File path: docs/cn/flatmap.md
##########
@@ -4,7 +4,35 @@ FlatMap - Maybe the fastest hashmap, with tradeoff of space.
 
 # EXAMPLE
 
-`#include <butil/containers/flat_map.h>`
+```c++
+#include <string>
+#include <butil/logging.h>
+#include <butil/containers/flat_map.h>
+
+void flatmap_example() {
+    butil::FlatMap<int, std::string> map;
+    // bucket_count: initial count of buckets, big enough to avoid resize.
+    // load_factor: element_count * 100 / bucket_count, 80 as default.
+    int bucket_count = 1000;
+    int load_factor = 80;
+    map.init(bucket_count, load_factor);
+    map.insert(10, "hello");
+    map[20] = "world";
+    std::string* value = map.seek(20);
+    CHECK(value != NULL)

Review comment:
       少一个 `;`




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@brpc.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@brpc.apache.org
For additional commands, e-mail: dev-help@brpc.apache.org