Function core::ptr::array_eachDeprecated[src]

pub unsafe fn array_each<T>(arr: **T, cb: |*T|)

Given a null-pointer-terminated **T (pointer to an array of pointers), iterate through each *T, passing to the provided callback function

Safety Note

This will only work with a null-terminated pointer array.