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