Function
restrictionsEquals
(self: ReadonlySet<number>, that: ReadonlySet<number>)
Source from the content-addressed store, hash-verified
| 1098 | |
| 1099 | const restrictionsArrayEquals = Equ.Array(Equ.strictEqual<number>()) |
| 1100 | const restrictionsEquals = (self: ReadonlySet<number>, that: ReadonlySet<number>): boolean => |
| 1101 | restrictionsArrayEquals(Arr.fromIterable(self), Arr.fromIterable(that)) |
| 1102 | |
| 1103 | /** |
| 1104 | * Checks whether two `Cron` instances have equal timezone values, field |
Tested by
no test coverage detected