Skip to content

Commit 705f450

Browse files
committed
Docs update
1 parent 36a96a0 commit 705f450

File tree

1 file changed

+6
-0
lines changed
  • pydatastructs/miscellaneous_data_structures

1 file changed

+6
-0
lines changed

pydatastructs/miscellaneous_data_structures/queue.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ class Queue(object):
2323
dtype : A valid python type
2424
Optional, by default NoneType if item
2525
is None.
26+
Required only for 'array' implementation.
27+
double_ended : bool
28+
Optional, by default, False.
29+
Set to True if the queue should support
30+
additional, appendleft and pop operations
31+
from left and right sides respectively.
2632
2733
Examples
2834
========

0 commit comments

Comments
 (0)