export function reverse$<T>(x: T[]): T[] {
  return x.reverse();
}