/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* iter.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos template void iter(PTR *address, unsigned int const length, T func) { for (unsigned int i = 0; i < length; i++) { func(address[i]); } } #endif