erg_compiler 0.6.53

Centimetre: the Erg compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
.Future!: ClassType
.Future!.
    result: (self: Ref Future!) -> Obj
    exception: (self: Ref Future!) -> Exception
    done: (self: Ref Future!) -> Bool
    cancelled: (self: Ref Future!) -> Bool
    set_result!: (self: RefMut Future!, result: Obj) => NoneType
    set_exception!: (self: RefMut Future!, exception: Exception) => NoneType
    cancel!: (self: RefMut Future!, msg := Str) => Bool

.isfuture: (obj: Obj) -> Bool