[src]

Function std::ptr::array_each

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. Barely less-dodgy Pointer Arithmetic. Dragons be here.