mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-23 04:55:24 +00:00
10 lines
491 B
Python
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)
|