[src]

Function std::ptr::array_each_with_len

pub unsafe fn array_each_with_len<T>(arr: **T, len: uint, cb: |*T|)

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

SAFETY NOTE: Pointer-arithmetic. Dragons be here.