Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/containers/maybe

    raca65621 r20877d2  
    2929
    3030forall(otype T)
    31 void ?{}(maybe(T) & this);
     31void ?{}(maybe(T) * this);
    3232
    3333forall(otype T)
    34 void ?{}(maybe(T) & this, T value);
     34void ?{}(maybe(T) * this, T value);
    3535
    3636forall(otype T)
    37 void ?{}(maybe(T) & this, maybe(T) other);
     37void ?{}(maybe(T) * this, maybe(T) other);
    3838
    3939forall(otype T)
    40 void ^?{}(maybe(T) & this);
     40void ^?{}(maybe(T) * this);
    4141
    4242forall(otype T)
    43 maybe(T) ?=?(maybe(T) & this, maybe(T) other);
     43maybe(T) ?=?(maybe(T) * this, maybe(T) other);
    4444
    4545forall(otype T)
Note: See TracChangeset for help on using the changeset viewer.