Skip to content

Commit

Permalink
addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-aptos committed Jan 11, 2025
1 parent f6235ee commit d24bb43
Show file tree
Hide file tree
Showing 6 changed files with 567 additions and 90 deletions.
170 changes: 144 additions & 26 deletions aptos-move/framework/aptos-stdlib/doc/ordered_map.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions aptos-move/framework/aptos-stdlib/doc/simple_map.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ This module provides a solution for unsorted maps, that is it has the properties
4) The keys are unsorted.
5) Adds and removals take O(N) time

DEPRECATED: since it's implementation is inneficient, it
has been deprecated in favor of <code><a href="ordered_map.md#0x1_ordered_map">ordered_map</a>.<b>move</b></code>.


- [Struct `SimpleMap`](#0x1_simple_map_SimpleMap)
- [Struct `Element`](#0x1_simple_map_Element)
Expand Down Expand Up @@ -62,6 +65,8 @@ This module provides a solution for unsorted maps, that is it has the properties

## Struct `SimpleMap`

DEPRECATED: since it's implementation is inneficient, it
has been deprecated in favor of <code><a href="ordered_map.md#0x1_ordered_map">ordered_map</a>.<b>move</b></code>.


<pre><code><b>struct</b> <a href="simple_map.md#0x1_simple_map_SimpleMap">SimpleMap</a>&lt;Key, Value&gt; <b>has</b> <b>copy</b>, drop, store
Expand Down
Loading

0 comments on commit d24bb43

Please sign in to comment.