Interaction class and method generics #61
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
class Cycle1 {
}
liefert
class Cycle1<HOH$, HOI$> {
Fun1$
<HOH
, HOH$> id1;public HOH$ m1(HOH$, HOH$);
}
müsste aber
class Cycle1 {
Fun1$$<GUO,GUO> id1 = (x) -> x;
void m1(GUO x, GUO y){
y = (id1.apply(x));
x = y;
}
}