Skip to content

Commit

Permalink
inline root node directly
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-aptos committed Nov 12, 2024
1 parent a129e11 commit ad50fc9
Show file tree
Hide file tree
Showing 6 changed files with 467 additions and 422 deletions.
366 changes: 223 additions & 143 deletions aptos-move/framework/aptos-stdlib/doc/big_ordered_map.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions aptos-move/framework/aptos-stdlib/doc/ordered_map.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ lexicographical sorting for complex types.


<pre><code><b>use</b> <a href="../../move-stdlib/doc/cmp.md#0x1_cmp">0x1::cmp</a>;
<b>use</b> <a href="../../move-stdlib/doc/enum_option.md#0x1_enum_option">0x1::enum_option</a>;
<b>use</b> <a href="../../move-stdlib/doc/error.md#0x1_error">0x1::error</a>;
<b>use</b> <a href="../../move-stdlib/doc/mem.md#0x1_mem">0x1::mem</a>;
<b>use</b> <a href="../../move-stdlib/doc/option.md#0x1_option">0x1::option</a>;
<b>use</b> <a href="../../move-stdlib/doc/vector.md#0x1_vector">0x1::vector</a>;
</code></pre>

Expand Down Expand Up @@ -393,7 +393,7 @@ If the key doesn't exist in the map, inserts the key/value, and returns none.
Otherwise, updates the value under the given key, and returns the old value.


<pre><code><b>public</b> <b>fun</b> <a href="ordered_map.md#0x1_ordered_map_upsert">upsert</a>&lt;K: drop, V&gt;(self: &<b>mut</b> <a href="ordered_map.md#0x1_ordered_map_OrderedMap">ordered_map::OrderedMap</a>&lt;K, V&gt;, key: K, value: V): <a href="../../move-stdlib/doc/enum_option.md#0x1_enum_option_Option">enum_option::Option</a>&lt;V&gt;
<pre><code><b>public</b> <b>fun</b> <a href="ordered_map.md#0x1_ordered_map_upsert">upsert</a>&lt;K: drop, V&gt;(self: &<b>mut</b> <a href="ordered_map.md#0x1_ordered_map_OrderedMap">ordered_map::OrderedMap</a>&lt;K, V&gt;, key: K, value: V): <a href="../../move-stdlib/doc/option.md#0x1_option_Option">option::Option</a>&lt;V&gt;
</code></pre>


Expand Down
Loading

0 comments on commit ad50fc9

Please sign in to comment.