From 20cc39d443d1a2c364b0fb778c7813ae7b5a1dd6 Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Tue, 11 Dec 2018 17:42:39 +0100 Subject: Add "since" attributes in xml for new functions and modules introduced after OTP_R13B03. --- lib/stdlib/doc/src/gb_trees.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/stdlib/doc/src/gb_trees.xml') diff --git a/lib/stdlib/doc/src/gb_trees.xml b/lib/stdlib/doc/src/gb_trees.xml index 5cfff021c1..3b55c2c75d 100644 --- a/lib/stdlib/doc/src/gb_trees.xml +++ b/lib/stdlib/doc/src/gb_trees.xml @@ -109,7 +109,7 @@ - + Returns a value and new tree without node with key Key.

Returns a value Value from node with key Key @@ -120,7 +120,7 @@ - + Returns a value and new tree without node with key Key.

Returns a value Value from node with key Key @@ -218,7 +218,7 @@ - + Return an iterator for a tree starting from a specified key. -- cgit v1.2.3 From 50f64c60b87e8d03fedc3f9f4e655aff8ca9f16c Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Wed, 12 Dec 2018 19:32:24 +0100 Subject: Add empty 'since' attribute for old modules and functions --- lib/stdlib/doc/src/gb_trees.xml | 48 ++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'lib/stdlib/doc/src/gb_trees.xml') diff --git a/lib/stdlib/doc/src/gb_trees.xml b/lib/stdlib/doc/src/gb_trees.xml index 3b55c2c75d..570c9c7cb6 100644 --- a/lib/stdlib/doc/src/gb_trees.xml +++ b/lib/stdlib/doc/src/gb_trees.xml @@ -28,7 +28,7 @@ - gb_trees + gb_trees General balanced trees.

This module provides Prof. Arne Andersson's General @@ -75,7 +75,7 @@ - + Rebalance a tree.

Rebalances Tree1. Notice that this is @@ -88,7 +88,7 @@ - + Remove a node from a tree.

Removes the node with key Key from @@ -98,7 +98,7 @@ - + Remove a (possibly non-existing) node from a tree.

Removes the node with key Key from @@ -131,7 +131,7 @@ - + Return an empty tree.

Returns a new empty tree.

@@ -139,7 +139,7 @@
- + Insert or update key with value in a tree.

Inserts Key with value Value @@ -151,7 +151,7 @@ - + Make a tree from an orddict.

Turns an ordered list List of key-value tuples @@ -160,7 +160,7 @@ - + Look up a key in a tree, if present.

Retrieves the value stored with Key in @@ -171,7 +171,7 @@ - + Insert a new key and value in a tree.

Inserts Key with value Value @@ -182,7 +182,7 @@ - + Test for membership of a tree.

Returns true if Key is present in @@ -191,7 +191,7 @@ - + Test for empty tree.

Returns true if Tree is an empty tree, @@ -200,7 +200,7 @@ - + Return an iterator for a tree.

Returns an iterator that can be used for traversing the @@ -233,7 +233,7 @@ - + Return a list of the keys in a tree.

Returns the keys in Tree as an ordered list.

@@ -241,7 +241,7 @@
- + Return largest key and value.

Returns {Key, Value}, where @@ -253,7 +253,7 @@ - + Look up a key in a tree.

Looks up Key in Tree. @@ -263,7 +263,7 @@ - + Return largest key and value.

Maps function F(K, V1) -> V2 @@ -275,7 +275,7 @@ - + Traverse a tree with an iterator.

Returns {Key, Value, @@ -288,7 +288,7 @@ - + Return the number of nodes in a tree.

Returns the number of nodes in Tree.

@@ -296,7 +296,7 @@
- + Return smallest key and value.

Returns {Key, Value}, where @@ -308,7 +308,7 @@ - + Extract largest key and value.

Returns {Key, Value, @@ -321,7 +321,7 @@ - + Extract smallest key and value.

Returns {Key, Value, @@ -334,7 +334,7 @@ - + Convert a tree into a list.

Converts a tree into an ordered list of key-value tuples.

@@ -342,7 +342,7 @@
- + Update a key to new value in a tree.

Updates Key to value Value @@ -352,7 +352,7 @@ - + Return a list of the values in a tree.

Returns the values in Tree as an ordered list, -- cgit v1.2.3