erg_compiler 0.6.53

Centimetre: the Erg compiler
Documentation
1
2
3
4
5
6
7
8
9
10
.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)