From d1380dbb32786a59efb69fdf50f94199f0045d71 Mon Sep 17 00:00:00 2001 From: kampersanda Date: Fri, 17 Nov 2017 23:33:32 +0900 Subject: [PATCH] Update --- doc/doc.html | 2 +- doc/doc.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/doc.html b/doc/doc.html index 7d07352..9cff5d6 100644 --- a/doc/doc.html +++ b/doc/doc.html @@ -310,7 +310,7 @@ Enumerating all registered keys... 9 : Yun

As shown in the output, xcdat::Trie assigns unique integer IDs to each registered key. The ID order is random, depending on node arrangement.

API

-

You can build a dictionary using static member function xcdat::TrieBuilder::build<bool>(). This function receives a set of keywords and returns the resulting class object of xcdat::Trie<bool>. For the usage, refer to the header comments of xcdat::TrieBuilder.hpp. Also for the usage of xcdat::Trie, refer to the header comments of xcdat::Trie.

+

You can build a dictionary using static member function xcdat::TrieBuilder::build(). This function receives a set of keywords and returns the resulting class object of xcdat::Trie. For the usage, refer to the header comments of xcdat::TrieBuilder.hpp. Also for the usage of xcdat::Trie, refer to the header comments of xcdat::Trie.

The detailed descriptions of AIP are under construction…

Benchmark

Work in progress…

diff --git a/doc/doc.md b/doc/doc.md index 897cf04..953bcbb 100644 --- a/doc/doc.md +++ b/doc/doc.md @@ -262,10 +262,10 @@ As shown in the output, `xcdat::Trie` assigns unique integer IDs to each registe ## API -You can build a dictionary using static member function `xcdat::TrieBuilder::build()`. -This function receives a set of keywords and returns the resulting class object of `xcdat::Trie`. -For the usage, refer to the header comments of [xcdat::TrieBuilder.hpp](https://github.com/kampersanda/xcdat/blob/master/include/xcdat/TrieBuilder.hpp). -Also for the usage of `xcdat::Trie`, refer to the header comments of [xcdat::Trie](https://github.com/kampersanda/xcdat/blob/master/include/xcdat/Trie.hpp). +You can build a dictionary using static member function `xcdat::TrieBuilder::build()`. +This function receives a set of keywords and returns the resulting class object of `xcdat::Trie`. +For the usage, refer to the header comments of [`xcdat::TrieBuilder.hpp`](https://github.com/kampersanda/xcdat/blob/master/include/xcdat/TrieBuilder.hpp). +Also for the usage of `xcdat::Trie`, refer to the header comments of [`xcdat::Trie`](https://github.com/kampersanda/xcdat/blob/master/include/xcdat/Trie.hpp). The detailed descriptions of AIP are under construction...