import {ArrayList} from './type'; import {subtractBy} from "./arrayset"; // ------------ @author Daniel de Oliveira ----------------- export const copy = (as: ArrayList): ArrayList => subtractBy(undefined as any)([])(as as any) as ArrayList;