// // Copyright (C) 2011-15 DyND Developers // BSD 2-Clause License, see LICENSE.txt // #pragma once #include namespace dynd { namespace nd { /** * Returns an arrfunc which copies data from one * array to another, without broadcasting */ DYND_API extern struct DYND_API copy : declfunc { static callable make(); static callable &get(); } copy; } // namespace dynd::nd } // namespace dynd