summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaria-12648430 <maria-12648430@hnc-agency.org>2021-04-06 17:14:02 +0200
committerMaria-12648430 <maria-12648430@hnc-agency.org>2021-04-06 17:14:02 +0200
commit303a4093006ac0be3d2330287d4d29584be447f7 (patch)
tree55b7f274c896edd7e7f2ad31deeba013ff789379
parentbd7c174344fab3ce56b824bc44083a51e693e0f6 (diff)
downloaderlang-303a4093006ac0be3d2330287d4d29584be447f7.tar.gz
Add since to docs for queue functions new in OTP 24.0
* all/2 * any/2 * delete/2 * delete_r/2 * delete_with/2 * delete_with_r/2 * filtermap/2 * fold/3
-rw-r--r--lib/stdlib/doc/src/queue.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/stdlib/doc/src/queue.xml b/lib/stdlib/doc/src/queue.xml
index 08320f4ec4..a4335604bc 100644
--- a/lib/stdlib/doc/src/queue.xml
+++ b/lib/stdlib/doc/src/queue.xml
@@ -122,7 +122,7 @@
<title>Original API</title>
</fsdescription>
<func>
- <name name="all" arity="2" since=""/>
+ <name name="all" arity="2" since="OTP 24.0"/>
<fsummary>Return <c>true</c> if all items in a queue satisfy
<c>Pred</c>.</fsummary>
<desc>
@@ -133,7 +133,7 @@
</func>
<func>
- <name name="any" arity="2" since=""/>
+ <name name="any" arity="2" since="OTP 24.0"/>
<fsummary>Return <c>true</c> if any of the items in a queue satisfy
<c>Pred</c>.</fsummary>
<desc>
@@ -144,7 +144,7 @@
</func>
<func>
- <name name="delete" arity="2" since=""/>
+ <name name="delete" arity="2" since="OTP 24.0"/>
<fsummary>Delete an item from the front of a queue.</fsummary>
<desc>
<p>Returns a copy of <c><anno>Q1</anno></c> where the first item
@@ -154,7 +154,7 @@
</func>
<func>
- <name name="delete_r" arity="2" since=""/>
+ <name name="delete_r" arity="2" since="OTP 24.0"/>
<fsummary>Delete an item from the rear of a queue.</fsummary>
<desc>
<p>Returns a copy of <c><anno>Q1</anno></c> where the last item
@@ -164,7 +164,7 @@
</func>
<func>
- <name name="delete_with" arity="2" since=""/>
+ <name name="delete_with" arity="2" since="OTP 24.0"/>
<fsummary>Delete an item matching a predicate from the front of a
queue.</fsummary>
<desc>
@@ -175,7 +175,7 @@
</func>
<func>
- <name name="delete_with_r" arity="2" since=""/>
+ <name name="delete_with_r" arity="2" since="OTP 24.0"/>
<fsummary>Delete an item matching a predicate from the rear of a
queue.</fsummary>
<desc>
@@ -207,7 +207,7 @@
</func>
<func>
- <name name="filtermap" arity="2" since=""/>
+ <name name="filtermap" arity="2" since="OTP 24.0"/>
<fsummary>Filter and map a queue.</fsummary>
<desc>
<p>Returns a queue <c><anno>Q2</anno></c> that is the result of calling
@@ -222,7 +222,7 @@
</func>
<func>
- <name name="fold" arity="3" since=""/>
+ <name name="fold" arity="3" since="OTP 24.0"/>
<fsummary>Fold a function over a queue.</fsummary>
<desc>
<p>Calls <c><anno>Fun</anno>(<anno>Item</anno>, <anno>AccIn</anno>)</c>