export const concat = <T>(head: Seq<T>, ...remaining: Array<Seq<T>>) =>
  head.concat(...remaining)