This commit is contained in:
kampersanda 2017-11-17 23:33:32 +09:00
parent 7b013c70a1
commit d1380dbb32
2 changed files with 5 additions and 5 deletions

View file

@ -310,7 +310,7 @@ Enumerating all registered keys...
9 : Yun</code></pre>
<p>As shown in the output, <code>xcdat::Trie</code> assigns unique integer IDs to each registered key. The ID order is random, depending on node arrangement.</p>
<h2 id="api">API</h2>
<p>You can build a dictionary using static member function <code>xcdat::TrieBuilder::build&lt;bool&gt;()</code>. This function receives a set of keywords and returns the resulting class object of <code>xcdat::Trie&lt;bool&gt;</code>. For the usage, refer to the header comments of <a href="https://github.com/kampersanda/xcdat/blob/master/include/xcdat/TrieBuilder.hpp">xcdat::TrieBuilder.hpp</a>. Also for the usage of <code>xcdat::Trie</code>, refer to the header comments of <a href="https://github.com/kampersanda/xcdat/blob/master/include/xcdat/Trie.hpp">xcdat::Trie</a>.</p>
<p>You can build a dictionary using static member function <code>xcdat::TrieBuilder::build()</code>. This function receives a set of keywords and returns the resulting class object of <code>xcdat::Trie</code>. For the usage, refer to the header comments of <a href="https://github.com/kampersanda/xcdat/blob/master/include/xcdat/TrieBuilder.hpp"><code>xcdat::TrieBuilder.hpp</code></a>. Also for the usage of <code>xcdat::Trie</code>, refer to the header comments of <a href="https://github.com/kampersanda/xcdat/blob/master/include/xcdat/Trie.hpp"><code>xcdat::Trie</code></a>.</p>
<p>The detailed descriptions of AIP are under construction…</p>
<h2 id="benchmark">Benchmark</h2>
<p>Work in progress…</p>

View file

@ -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<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](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...