Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

objc_type_param.h
__attribute__((objc_root_class))
@interface Root {
  Class isa;
}
@end

@interface A<T,U> : Root
@end

@interface B<T,U> : A<T,U>
typedef void (*BCallback)(T, U);
+ (id) newWithCallback: (BCallback) callback;
@end