File: future.txt

package info (click to toggle)
python-frozendict 2.4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,704 kB
  • sloc: ansic: 33,974; python: 2,314; sh: 11; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 539 bytes parent folder | download
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
union
intersection
difference
symmetric_difference(other)
set ^ other

    Return a new set with elements in either the set or other but not both


issubset(other)
set <= other

    Test whether every element in the set is in other.

set < other

    Test whether the set is a proper subset of other, that is, set <= other and set != other.

issuperset(other)
set >= other

    Test whether every element in other is in the set.

set > other

    Test whether the set is a proper superset of other, that is, set >= other and set != other.