/** * @tsplus static ImmutableQueue.Aspects append * @tsplus pipeable ImmutableQueue append */ export function append(value: A) { return (self: ImmutableQueue): ImmutableQueue => self.appendAll(List(value)) }