-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathdimensionality.pyi
More file actions
85 lines (59 loc) · 1.71 KB
/
dimensionality.pyi
File metadata and controls
85 lines (59 loc) · 1.71 KB
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
class Dimensionality(dict):
@property
def ndims(self) -> int:
...
@property
def simplified(self) -> Dimensionality:
...
@property
def string(self) -> str:
...
@property
def unicode(self) -> str:
...
@property
def latex(self) -> str:
...
@property
def html(self) -> str:
...
def __hash__(self) -> int: # type: ignore[override]
...
def __add__(self, other: Dimensionality) -> Dimensionality:
...
def __iadd__(self, other: Dimensionality) -> Dimensionality:
...
def __sub__(self, other: Dimensionality) -> Dimensionality:
...
def __isub__(self, other: Dimensionality) -> Dimensionality:
...
def __mul__(self, other: Dimensionality) -> Dimensionality:
...
def __imul__(self, other: Dimensionality) -> Dimensionality:
...
def __truediv__(self, other: Dimensionality) -> Dimensionality:
...
def __itruediv__(self, other: Dimensionality) -> Dimensionality:
...
def __pow__(self, other : Dimensionality) -> Dimensionality:
...
def __ipow__(self, other: Dimensionality) -> Dimensionality:
...
def __repr__(self) -> str:
...
def __str__(self) -> str:
...
def __eq__(self, other: object) -> bool:
...
def __ne__(self, other: object) -> bool:
...
def __gt__(self, other: Dimensionality) -> bool:
...
def __ge__(self, other: Dimensionality) -> bool:
...
def __lt__(self, other: Dimensionality) -> bool:
...
def __le__(self, other: Dimensionality)-> bool:
...
def copy(self) -> Dimensionality:
...