diff options
author | Henrik Nord <[email protected]> | 2012-02-16 14:11:51 +0100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2012-02-16 14:11:51 +0100 |
commit | 554dfc97279f027bcf061f6e303e61a7cd21ffdd (patch) | |
tree | 05895182723c1e69dc45daae9185ba19463dc229 /lib/stdlib/doc | |
parent | 5620b434415d7c7d7060dbeff2c71d6bb96b91da (diff) | |
parent | a7d95881e8701f1c071d9a957172027a287e6f73 (diff) | |
download | otp-554dfc97279f027bcf061f6e303e61a7cd21ffdd.tar.gz otp-554dfc97279f027bcf061f6e303e61a7cd21ffdd.tar.bz2 otp-554dfc97279f027bcf061f6e303e61a7cd21ffdd.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/stdlib/doc')
-rw-r--r-- | lib/stdlib/doc/src/gb_trees.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/stdlib/doc/src/gb_trees.xml b/lib/stdlib/doc/src/gb_trees.xml index 65c866efbe..9316d60b1a 100644 --- a/lib/stdlib/doc/src/gb_trees.xml +++ b/lib/stdlib/doc/src/gb_trees.xml @@ -132,15 +132,6 @@ </desc> </func> <func> - <name name="lookup" arity="2"/> - <fsummary>Look up a key in a tree</fsummary> - <desc> - <p>Looks up <c><anno>Key</anno></c> in <c><anno>Tree</anno></c>; returns - <c>{value, <anno>Val</anno>}</c>, or <c>none</c> if <c><anno>Key</anno></c> is not - present.</p> - </desc> - </func> - <func> <name name="insert" arity="3"/> <fsummary>Insert a new key and value in a tree</fsummary> <desc> @@ -196,6 +187,15 @@ </desc> </func> <func> + <name name="lookup" arity="2"/> + <fsummary>Look up a key in a tree</fsummary> + <desc> + <p>Looks up <c><anno>Key</anno></c> in <c><anno>Tree</anno></c>; returns + <c>{value, <anno>Val</anno>}</c>, or <c>none</c> if <c><anno>Key</anno></c> is not + present.</p> + </desc> + </func> + <func> <name name="map" arity="2"/> <fsummary>Return largest key and value</fsummary> <desc><p>Maps the function F(<anno>K</anno>, <anno>V1</anno>) -> <anno>V2</anno> to all key-value pairs |