xdbc 1.0.191 → 1.0.192
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/DBC/EQ/DIFFERENT.ts +17 -6
package/package.json
CHANGED
package/src/DBC/EQ/DIFFERENT.ts
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { EQ } from "../EQ";
|
|
2
2
|
/** See {@link COMPARISON }. */
|
|
3
3
|
export class DIFFERENT extends EQ {
|
|
4
|
-
public static PRE(
|
|
4
|
+
public static override PRE(
|
|
5
5
|
equivalent,
|
|
6
6
|
path,
|
|
7
|
-
dbc,
|
|
8
7
|
hint
|
|
9
8
|
);
|
|
9
|
+
public static override PRE(
|
|
10
|
+
equivalent,
|
|
11
|
+
path,
|
|
12
|
+
);
|
|
10
13
|
/** See {@link COMPARISON.PRE }. */
|
|
11
14
|
public static override PRE(
|
|
12
15
|
equivalent,
|
|
@@ -18,12 +21,16 @@ export class DIFFERENT extends EQ {
|
|
|
18
21
|
return EQ.PRE(equivalent, true, path, dbc, hint);
|
|
19
22
|
}
|
|
20
23
|
|
|
21
|
-
public static POST(
|
|
24
|
+
public static override POST(
|
|
22
25
|
equivalent,
|
|
23
26
|
path,
|
|
24
|
-
dbc,
|
|
25
27
|
hint
|
|
26
28
|
);
|
|
29
|
+
public static override POST(
|
|
30
|
+
equivalent,
|
|
31
|
+
path,
|
|
32
|
+
);
|
|
33
|
+
|
|
27
34
|
/** See {@link COMPARISON.POST }. */
|
|
28
35
|
public static override POST(
|
|
29
36
|
equivalent,
|
|
@@ -34,12 +41,16 @@ export class DIFFERENT extends EQ {
|
|
|
34
41
|
) {
|
|
35
42
|
return EQ.POST(equivalent, true, path, dbc, hint);
|
|
36
43
|
}
|
|
37
|
-
public static INVARIANT(
|
|
44
|
+
public static override INVARIANT(
|
|
38
45
|
equivalent,
|
|
39
46
|
path,
|
|
40
|
-
dbc,
|
|
41
47
|
hint
|
|
42
48
|
);
|
|
49
|
+
public static override INVARIANT(
|
|
50
|
+
equivalent,
|
|
51
|
+
path,
|
|
52
|
+
);
|
|
53
|
+
|
|
43
54
|
/** See {@link COMPARISON.INVARIANT }. */
|
|
44
55
|
public static INVARIANT(
|
|
45
56
|
equivalent,
|