Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

a1.h
namespace N {
  template <typename> struct A {
    int n;
    A() : n() {}
  };

  // Create declaration of A<int>.
  typedef A<int> AI;
}