File: sortedset.rst

package info (click to toggle)
sortedcontainers 2.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 11,136 kB
  • sloc: python: 6,613; sh: 60; makefile: 18
file content (34 lines) | stat: -rw-r--r-- 869 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.. automodule:: sortedcontainers.sortedset


SortedSet
.........

.. autoclass:: sortedcontainers.SortedSet
   :show-inheritance:

   .. automethod:: __init__
   .. autoattribute:: key
   .. automethod:: __contains__
   .. automethod:: __iter__
   .. automethod:: __len__
   .. automethod:: add
   .. automethod:: discard
   .. automethod:: __getitem__
   .. automethod:: __delitem__
   .. automethod:: __reversed__
   .. automethod:: clear
   .. automethod:: pop
   .. automethod:: remove
   .. automethod:: difference
   .. automethod:: difference_update
   .. automethod:: intersection
   .. automethod:: intersection_update
   .. automethod:: symmetric_difference
   .. automethod:: symmetric_difference_update
   .. automethod:: union
   .. automethod:: update
   .. automethod:: copy
   .. automethod:: count
   .. automethod:: __repr__
   .. automethod:: _check