import { List } from "@tsplus/stdlib/collections/List/definition"; /** * Concatenates two lists together * @tsplus pipeable-operator List & * @tsplus static List.Aspects concat * @tsplus pipeable List concat * @tsplus location "@tsplus/stdlib/collections/List/concat" */ export declare function concat(that: List): (self: import("./definition").List) => import("./definition").List; /** * Concatenates two lists together * @tsplus operator List + * @tsplus location "@tsplus/stdlib/collections/List/concat" */ export declare function concatOperator(self: List.NonEmpty, that: List.NonEmpty): List; export declare function concatOperator(self: List.NonEmpty, that: List): List.NonEmpty; export declare function concatOperator(self: List, that: List.NonEmpty): List.NonEmpty; export declare function concatOperator(self: List, that: List): List; //# sourceMappingURL=concat.d.ts.map