zmc
2023-12-22 9fdbf60165db0400c2e8e6be2dc6e88138ac719a
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
U
Z±d¸Xã@sàdZddlZddlZddlmZddlmZmZddlm    Z    z ddl
m Z m Z m Z mZmZWn0ek
rŒddlm Z m Z m Z mZmZYnXGdd    „d    eƒZd
d „ZGd d „d e eƒZGdd„de eƒZGdd„deeƒZdS)ašSorted Dict
==============
 
:doc:`Sorted Containers<index>` is an Apache2 licensed Python sorted
collections library, written in pure-Python, and fast as C-extensions. The
:doc:`introduction<introduction>` is the best way to get started.
 
Sorted dict implementations:
 
.. currentmodule:: sortedcontainers
 
* :class:`SortedDict`
* :class:`SortedKeysView`
* :class:`SortedItemsView`
* :class:`SortedValuesView`
 
éN)Úchainé)Ú
SortedListÚrecursive_repr©Ú    SortedSet)Ú    ItemsViewÚKeysViewÚMappingÚ
ValuesViewÚSequencec@s^eZdZdZdd„Zedd„ƒZedd„ƒZdd    „Zd
d „Z    d d „Z
dd„Z dd„Z e Z dd„Zdd„Zdd„Zdd„ZeZedBdd„ƒZdd„Zdd „Zd!d"„Zejd#krðd$d%„Zed&d'ƒZed(d)ƒZed*d+ƒZed,d'ƒZed-d)ƒZed.d+ƒZ Gd/d0„d0e!ƒZ"e"ƒZ#e#fd1d2„Z$dCd4d5„Z%dDd6d7„Z&dEd8d9„Z'd:d;„Z(e(Z)d<d=„Z*e+ƒd>d?„ƒZ,d@dA„Z-dS)FÚ
SortedDictaäSorted dict is a sorted mutable mapping.
 
    Sorted dict keys are maintained in sorted order. The design of sorted dict
    is simple: sorted dict inherits from dict to store items and maintains a
    sorted list of keys.
 
    Sorted dict keys must be hashable and comparable. The hash and total
    ordering of keys must not change while they are stored in the sorted dict.
 
    Mutable mapping methods:
 
    * :func:`SortedDict.__getitem__` (inherited from dict)
    * :func:`SortedDict.__setitem__`
    * :func:`SortedDict.__delitem__`
    * :func:`SortedDict.__iter__`
    * :func:`SortedDict.__len__` (inherited from dict)
 
    Methods for adding items:
 
    * :func:`SortedDict.setdefault`
    * :func:`SortedDict.update`
 
    Methods for removing items:
 
    * :func:`SortedDict.clear`
    * :func:`SortedDict.pop`
    * :func:`SortedDict.popitem`
 
    Methods for looking up items:
 
    * :func:`SortedDict.__contains__` (inherited from dict)
    * :func:`SortedDict.get` (inherited from dict)
    * :func:`SortedDict.peekitem`
 
    Methods for views:
 
    * :func:`SortedDict.keys`
    * :func:`SortedDict.items`
    * :func:`SortedDict.values`
 
    Methods for miscellany:
 
    * :func:`SortedDict.copy`
    * :func:`SortedDict.fromkeys`
    * :func:`SortedDict.__reversed__`
    * :func:`SortedDict.__eq__` (inherited from dict)
    * :func:`SortedDict.__ne__` (inherited from dict)
    * :func:`SortedDict.__repr__`
    * :func:`SortedDict._check`
 
    Sorted list methods available (applies to keys):
 
    * :func:`SortedList.bisect_left`
    * :func:`SortedList.bisect_right`
    * :func:`SortedList.count`
    * :func:`SortedList.index`
    * :func:`SortedList.irange`
    * :func:`SortedList.islice`
    * :func:`SortedList._reset`
 
    Additional sorted list methods available, if key-function used:
 
    * :func:`SortedKeyList.bisect_key_left`
    * :func:`SortedKeyList.bisect_key_right`
    * :func:`SortedKeyList.irange_key`
 
    Sorted dicts may only be compared for equality and inequality.
 
    cOsü|r8|ddkst|dƒr8|d}|_|dd…}n
d}|_t|d|_|j}|j|_|j|_|j|_    |j
|_ |j |_ |j|_|j|_|j|_|j|_|j|_|j|_|j|_|j|_|j|_|dk    rì|j|_|j|_|j|_|j|_|j||ŽdS)aQInitialize sorted dict instance.
 
        Optional key-function argument defines a callable that, like the `key`
        argument to the built-in `sorted` function, extracts a comparison key
        from each dictionary key. If no function is specified, the default
        compares the dictionary keys directly. The key-function argument must
        be provided as a positional argument and must come before all other
        arguments.
 
        Optional iterable argument provides an initial sequence of pairs to
        initialize the sorted dict. Each pair in the sequence defines the key
        and corresponding value. If a key is seen more than once, the last
        value associated with it is stored in the new sorted dict.
 
        Optional mapping argument provides an initial mapping of items to
        initialize the sorted dict.
 
        If keyword arguments are given, the keywords themselves, with their
        associated values, are added as items to the dictionary. If a key is
        specified both in the positional argument and as a keyword argument,
        the value associated with the keyword is stored in the
        sorted dict.
 
        Sorted dict keys must be hashable, per the requirement for Python's
        dictionaries. Keys (or the result of the key-function) must also be
        comparable, per the requirement for sorted lists.
 
        >>> d = {'alpha': 1, 'beta': 2}
        >>> SortedDict([('alpha', 1), ('beta', 2)]) == d
        True
        >>> SortedDict({'alpha': 1, 'beta': 2}) == d
        True
        >>> SortedDict(alpha=1, beta=2) == d
        True
 
        rNr)Úkey)ÚcallableÚ_keyrÚ_listÚaddÚ    _list_addÚclearÚ _list_clearÚ__iter__Ú
_list_iterÚ __reversed__Ú_list_reversedÚpopÚ    _list_popÚremoveÚ _list_removeÚupdateÚ _list_updateÚ bisect_leftÚ bisect_rightÚbisectÚindexZirangeÚisliceZ_resetZbisect_key_leftZbisect_key_rightZ
bisect_keyZ
irange_keyÚ_update)ÚselfÚargsÚkwargsrr©r)úRd:\z\workplace\vscode\pyvenv\venv\Lib\site-packages\sortedcontainers/sorteddict.pyÚ__init__qs4%
 zSortedDict.__init__cCs|jS)z‡Function used to extract comparison key from keys.
 
        Sorted dict compares keys directly when the key function is none.
 
        )r©r&r)r)r*r½szSortedDict.keycCsDz|jWStk
r>tjdtddt|ƒ}|_|YSXdS)z“Cached reference of sorted keys view.
 
        Deprecated in version 2 of Sorted Containers. Use
        :func:`SortedDict.keys` instead.
 
        z>sorted_dict.iloc is deprecated. Use SortedDict.keys() instead.é)Ú
stacklevelN)Ú_ilocÚAttributeErrorÚwarningsÚwarnÚDeprecationWarningÚSortedKeysView)r&r/r)r)r*ÚilocÇs    üzSortedDict.iloccCst |¡| ¡dS)zPRemove all items from sorted dict.
 
        Runtime complexity: `O(n)`
 
        N)Údictrrr,r)r)r*rÝs
zSortedDict.clearcCst ||¡| |¡dS)aêRemove item from sorted dict identified by `key`.
 
        ``sd.__delitem__(key)`` <==> ``del sd[key]``
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> sd = SortedDict({'a': 1, 'b': 2, 'c': 3})
        >>> del sd['b']
        >>> sd
        SortedDict({'a': 1, 'c': 3})
        >>> del sd['z']
        Traceback (most recent call last):
          ...
        KeyError: 'z'
 
        :param key: `key` for item lookup
        :raises KeyError: if key not found
 
        N)r6Ú __delitem__r)r&rr)r)r*r7ès zSortedDict.__delitem__cCs| ¡S)z÷Return an iterator over the keys of the sorted dict.
 
        ``sd.__iter__()`` <==> ``iter(sd)``
 
        Iterating the sorted dict while adding or deleting items may raise a
        :exc:`RuntimeError` or fail to iterate over all keys.
 
        )rr,r)r)r*rs    zSortedDict.__iter__cCs| ¡S)aReturn a reverse iterator over the keys of the sorted dict.
 
        ``sd.__reversed__()`` <==> ``reversed(sd)``
 
        Iterating the sorted dict while adding or deleting items may raise a
        :exc:`RuntimeError` or fail to iterate over all keys.
 
        )rr,r)r)r*r s    zSortedDict.__reversed__cCs$||kr| |¡t |||¡dS)a­Store item in sorted dict with `key` and corresponding `value`.
 
        ``sd.__setitem__(key, value)`` <==> ``sd[key] = value``
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> sd = SortedDict()
        >>> sd['c'] = 3
        >>> sd['a'] = 1
        >>> sd['b'] = 2
        >>> sd
        SortedDict({'a': 1, 'b': 2, 'c': 3})
 
        :param key: key for item
        :param value: value for item
 
        N)rr6Ú __setitem__)r&rÚvaluer)r)r*r8s
zSortedDict.__setitem__cCs.t|tƒstSt| ¡| ¡ƒ}| |j|¡S©N©Ú
isinstancer
ÚNotImplementedrÚitemsÚ    __class__r©r&Úotherr>r)r)r*Ú__or__1s
zSortedDict.__or__cCs.t|tƒstSt| ¡| ¡ƒ}| |j|¡Sr:r;r@r)r)r*Ú__ror__8s
zSortedDict.__ror__cCs| |¡|Sr:)r%)r&rAr)r)r*Ú__ior__?s
zSortedDict.__ior__cCs| |j| ¡¡S)zyReturn a shallow copy of the sorted dict.
 
        Runtime complexity: `O(n)`
 
        :return: new sorted dict
 
        )r?rr>r,r)r)r*ÚcopyDszSortedDict.copyNcs|‡fdd„|DƒƒS)zùReturn a new sorted dict initailized from `iterable` and `value`.
 
        Items in the sorted dict have keys from `iterable` and values equal to
        `value`.
 
        Runtime complexity: `O(n*log(n))`
 
        :return: new sorted dict
 
        c3s|]}|ˆfVqdSr:r)©Ú.0r©r9r)r*Ú    <genexpr>]sz&SortedDict.fromkeys.<locals>.<genexpr>r))ÚclsÚiterabler9r)rHr*ÚfromkeysQs zSortedDict.fromkeyscCst|ƒS)z™Return new sorted keys view of the sorted dict's keys.
 
        See :class:`SortedKeysView` for details.
 
        :return: new sorted keys view
 
        )r4r,r)r)r*Úkeys`szSortedDict.keyscCst|ƒS)zReturn new sorted items view of the sorted dict's items.
 
        See :class:`SortedItemsView` for details.
 
        :return: new sorted items view
 
        )ÚSortedItemsViewr,r)r)r*r>kszSortedDict.itemscCst|ƒS)z¡Return new sorted values view of the sorted dict's values.
 
        See :class:`SortedValuesView` for details.
 
        :return: new sorted values view
 
        )ÚSortedValuesViewr,r)r)r*ÚvaluesvszSortedDict.valuesics.dj||d‰‡fdd„}||_ˆ|_t|ƒS)NzQSortedDict.{original}() is not implemented. Use SortedDict.{alternate}() instead.)ÚoriginalÚ    alternatecs tˆƒ‚dSr:)r0r,©Úmessager)r*Úmethodˆsz6SortedDict.__make_raise_attributeerror.<locals>.method)ÚformatÚ__name__Ú__doc__Úproperty)rQrRrUr)rSr*Z__make_raise_attributeerror‚sÿý z&SortedDict.__make_raise_attributeerrorÚ    iteritemsr>ÚiterkeysrMÚ
itervaluesrPÚ    viewitemsÚviewkeysÚ
viewvaluesc@seZdZdd„ZdS)zSortedDict._NotGivencCsdS)Nz <not-given>r)r,r)r)r*Ú__repr__™szSortedDict._NotGiven.__repr__N)rWÚ
__module__Ú __qualname__r`r)r)r)r*Ú    _NotGiven—srccCs8||kr| |¡t ||¡S||jkr0t|ƒ‚|SdS)a­Remove and return value for item identified by `key`.
 
        If the `key` is not found then return `default` if given. If `default`
        is not given then raise :exc:`KeyError`.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> sd = SortedDict({'a': 1, 'b': 2, 'c': 3})
        >>> sd.pop('c')
        3
        >>> sd.pop('z', 26)
        26
        >>> sd.pop('y')
        Traceback (most recent call last):
          ...
        KeyError: 'y'
 
        :param key: `key` for item
        :param default: `default` value if key not found (optional)
        :return: value for item
        :raises KeyError: if `key` not found and `default` not given
 
        N)rr6rÚ_SortedDict__not_givenÚKeyError©r&rÚdefaultr)r)r*ržs 
 
zSortedDict.popéÿÿÿÿcCs*|s tdƒ‚| |¡}t ||¡}||fS)a_Remove and return ``(key, value)`` pair at `index` from sorted dict.
 
        Optional argument `index` defaults to -1, the last item in the sorted
        dict. Specify ``index=0`` for the first item in the sorted dict.
 
        If the sorted dict is empty, raises :exc:`KeyError`.
 
        If the `index` is out of range, raises :exc:`IndexError`.
 
        Runtime complexity: `O(log(n))`
 
        >>> sd = SortedDict({'a': 1, 'b': 2, 'c': 3})
        >>> sd.popitem()
        ('c', 3)
        >>> sd.popitem(0)
        ('a', 1)
        >>> sd.popitem(100)
        Traceback (most recent call last):
          ...
        IndexError: list index out of range
 
        :param int index: `index` of item (default -1)
        :return: key and value pair
        :raises KeyError: if sorted dict is empty
        :raises IndexError: if `index` out of range
 
        zpopitem(): dictionary is empty)rerr6r)r&r#rr9r)r)r*Úpopitem¿s
 
 zSortedDict.popitemcCs|j|}|||fS)a0Return ``(key, value)`` pair at `index` in sorted dict.
 
        Optional argument `index` defaults to -1, the last item in the sorted
        dict. Specify ``index=0`` for the first item in the sorted dict.
 
        Unlike :func:`SortedDict.popitem`, the sorted dict is not modified.
 
        If the `index` is out of range, raises :exc:`IndexError`.
 
        Runtime complexity: `O(log(n))`
 
        >>> sd = SortedDict({'a': 1, 'b': 2, 'c': 3})
        >>> sd.peekitem()
        ('c', 3)
        >>> sd.peekitem(0)
        ('a', 1)
        >>> sd.peekitem(100)
        Traceback (most recent call last):
          ...
        IndexError: list index out of range
 
        :param int index: index of item (default -1)
        :return: key and value pair
        :raises IndexError: if `index` out of range
 
        )r)r&r#rr)r)r*Úpeekitemãs
zSortedDict.peekitemcCs,||kr||St |||¡| |¡|S)a’Return value for item identified by `key` in sorted dict.
 
        If `key` is in the sorted dict then return its value. If `key` is not
        in the sorted dict then insert `key` with value `default` and return
        `default`.
 
        Optional argument `default` defaults to none.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> sd = SortedDict()
        >>> sd.setdefault('a', 1)
        1
        >>> sd.setdefault('a', 10)
        1
        >>> sd
        SortedDict({'a': 1})
 
        :param key: key for item
        :param default: value for item (default None)
        :return: value for item identified by `key`
 
        )r6r8rrfr)r)r*Ú
setdefaults
 
zSortedDict.setdefaultcOs´|s*tj|f|ž|Ž| t |¡¡dS|sRt|ƒdkrRt|dtƒrR|d}n
t||Ž}dt|ƒt|ƒkr–t ||¡| ¡| t |¡¡n|D]}| |||¡qšdS)asUpdate sorted dict with items from `args` and `kwargs`.
 
        Overwrites existing items.
 
        Optional arguments `args` and `kwargs` may be a mapping, an iterable of
        pairs or keyword arguments. See :func:`SortedDict.__init__` for
        details.
 
        :param args: mapping or iterable of pairs
        :param kwargs: keyword arguments mapping
 
        Nrré
)r6rrrÚlenr<rÚ_setitem)r&r'r(Úpairsrr)r)r*r!s 
 
 zSortedDict.updatecCst |¡}t|ƒ|j|ffS)z Support for pickle.
 
        The tricks played with caching references in
        :func:`SortedDict.__init__` confuse pickle so customize the reducer.
 
        )r6rEÚtyper)r&r>r)r)r*Ú
__reduce__Cs
zSortedDict.__reduce__csVˆj}tˆƒj}|dkrdnd |¡}dj‰d ‡‡fdd„ˆjDƒ¡}d |||¡S)    z‹Return string representation of sorted dict.
 
        ``sd.__repr__()`` <==> ``repr(sd)``
 
        :return: string representation
 
        NÚz{0!r}, z {0!r}: {1!r}z, c3s|]}ˆ|ˆ|ƒVqdSr:r)rF©Z item_formatr&r)r*rI[sz&SortedDict.__repr__.<locals>.<genexpr>z{0}({1}{{{2}}}))rrprWrVÚjoinr)r&rZ    type_nameZkey_argr>r)rsr*r`Ns     
zSortedDict.__repr__cs@ˆj}| ¡tˆƒt|ƒks"t‚t‡fdd„|Dƒƒs<t‚dS)zNCheck invariants of sorted dict.
 
        Runtime complexity: `O(n)`
 
        c3s|]}|ˆkVqdSr:r)rFr,r)r*rIhsz$SortedDict._check.<locals>.<genexpr>N)rÚ_checkrmÚAssertionErrorÚall)r&rr)r,r*ru_szSortedDict._check)N)rh)rh)N).rWrarbrXr+rYrr5rr7rrr8rnrBrCrDrEÚ__copy__Ú classmethodrLrMr>rPÚsysÚ
hexversionZ&_SortedDict__make_raise_attributeerrorrZr[r\r]r^r_Úobjectrcrdrrirjrkrr%rqrr`rur)r)r)r*r +sTEL
    
 
 
 
 
 
 
 
 
 !
$
 
 
r cCsX|j}|j}tj}t|tƒr@||}||=|D]}|||ƒq.n| |¡}|||ƒdS)a
Remove item at `index` from sorted dict.
 
    ``view.__delitem__(index)`` <==> ``del view[index]``
 
    Supports slicing.
 
    Runtime complexity: `O(log(n))` -- approximate.
 
    >>> sd = SortedDict({'a': 1, 'b': 2, 'c': 3})
    >>> view = sd.keys()
    >>> del view[0]
    >>> sd
    SortedDict({'b': 2, 'c': 3})
    >>> del view[-1]
    >>> sd
    SortedDict({'b': 2})
    >>> del view[:]
    >>> sd
    SortedDict({})
 
    :param index: integer or slice for indexing
    :raises IndexError: if index out of range
 
    N)Ú_mappingrr6r7r<Úslicer)r&r#r}rZ dict_delitemrMrr)r)r*Ú _view_delitemks
 
rc@s,eZdZdZdZedd„ƒZdd„ZeZ    dS)r4z×Sorted keys view is a dynamic view of the sorted dict's keys.
 
    When the sorted dict's keys change, the view reflects those changes.
 
    The keys view implements the set and sequence abstract base classes.
 
    r)cCst|ƒSr:r©rJÚitr)r)r*Ú_from_iterableœszSortedKeysView._from_iterablecCs |jj|S)a„Lookup key at `index` in sorted keys views.
 
        ``skv.__getitem__(index)`` <==> ``skv[index]``
 
        Supports slicing.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> sd = SortedDict({'a': 1, 'b': 2, 'c': 3})
        >>> skv = sd.keys()
        >>> skv[0]
        'a'
        >>> skv[-1]
        'c'
        >>> skv[:]
        ['a', 'b', 'c']
        >>> skv[100]
        Traceback (most recent call last):
          ...
        IndexError: list index out of range
 
        :param index: integer or slice for indexing
        :return: key or list of keys
        :raises IndexError: if index out of range
 
        )r}r)r&r#r)r)r*Ú __getitem__¡szSortedKeysView.__getitem__N©
rWrarbrXÚ    __slots__ryr‚rƒrr7r)r)r)r*r4‘s 
r4c@s,eZdZdZdZedd„ƒZdd„ZeZ    dS)rNzÛSorted items view is a dynamic view of the sorted dict's items.
 
    When the sorted dict's items change, the view reflects those changes.
 
    The items view implements the set and sequence abstract base classes.
 
    r)cCst|ƒSr:rr€r)r)r*r‚ÍszSortedItemsView._from_iterablecsD|j‰ˆj}t|tƒr0||}‡fdd„|DƒS||}|ˆ|fS)a¡Lookup item at `index` in sorted items view.
 
        ``siv.__getitem__(index)`` <==> ``siv[index]``
 
        Supports slicing.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> sd = SortedDict({'a': 1, 'b': 2, 'c': 3})
        >>> siv = sd.items()
        >>> siv[0]
        ('a', 1)
        >>> siv[-1]
        ('c', 3)
        >>> siv[:]
        [('a', 1), ('b', 2), ('c', 3)]
        >>> siv[100]
        Traceback (most recent call last):
          ...
        IndexError: list index out of range
 
        :param index: integer or slice for indexing
        :return: item or list of items
        :raises IndexError: if index out of range
 
        csg|]}|ˆ|f‘qSr)r)rF©r}r)r*Ú
<listcomp>òsz/SortedItemsView.__getitem__.<locals>.<listcomp>©r}rr<r~©r&r#Z _mapping_listrMrr)r†r*rƒÒs
zSortedItemsView.__getitem__Nr„r)r)r)r*rNÂs 
&rNc@s eZdZdZdZdd„ZeZdS)rOzÕSorted values view is a dynamic view of the sorted dict's values.
 
    When the sorted dict's values change, the view reflects those changes.
 
    The values view implements the sequence abstract base class.
 
    r)cs@|j‰ˆj}t|tƒr0||}‡fdd„|DƒS||}ˆ|S)aƒLookup value at `index` in sorted values view.
 
        ``siv.__getitem__(index)`` <==> ``siv[index]``
 
        Supports slicing.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> sd = SortedDict({'a': 1, 'b': 2, 'c': 3})
        >>> svv = sd.values()
        >>> svv[0]
        1
        >>> svv[-1]
        3
        >>> svv[:]
        [1, 2, 3]
        >>> svv[100]
        Traceback (most recent call last):
          ...
        IndexError: list index out of range
 
        :param index: integer or slice for indexing
        :return: value or list of values
        :raises IndexError: if index out of range
 
        csg|] }ˆ|‘qSr)r)rFr†r)r*r‡&sz0SortedValuesView.__getitem__.<locals>.<listcomp>rˆr‰r)r†r*rƒs
zSortedValuesView.__getitem__N)rWrarbrXr…rƒrr7r)r)r)r*rOûs&rO)rXrzr1Ú    itertoolsrZ
sortedlistrrZ    sortedsetrÚcollections.abcrr    r
r r Ú ImportErrorÚ collectionsr6r rr4rNrOr)r)r)r*Ú<module>s$   "D&19