import { ImmutableQueueInternal } from "@tsplus/stdlib/collections/ImmutableQueue/_internal/ImmutableQueueInternal" /** * @tsplus static ImmutableQueue.Ops from */ export function from(collection: Collection): ImmutableQueue { return new ImmutableQueueInternal(List.from(collection)) }