import { constVoid } from "@tsplus/stdlib/data/Function" /** * @tsplus static effect/core/stream/Channel.Ops concatAll */ export function concatAll( channels: Channel< Env, InErr, InElem, InDone, OutErr, Channel, any > ): Channel { return Channel.concatAllWith(channels, constVoid, constVoid) }