erg/crates/erg_compiler/lib/core.d/Set.d.er
2024-01-04 17:26:26 +09:00

10 lines
491 B
Python

.Set: ClassType
.Set.
copy: |T|(self: .Set(T)) -> .Set(T)
differece: |T|(self: .Set(T), other: .Set(T)) -> .Set(T)
intersection: |T|(self: .Set(T), other: .Set(T)) -> .Set(T)
isdisjoint: |T|(self: .Set(T), other: .Set(T)) -> Bool
issubset: |T|(self: .Set(T), other: .Set(T)) -> Bool
issuperset: |T|(self: .Set(T), other: .Set(T)) -> Bool
symmetric_difference: |T|(self: .Set(T), other: .Set(T)) -> .Set(T)
union: |T|(self: .Set(T), other: .Set(T)) -> .Set(T)