Home
last modified time | relevance | path

Searched defs:array_to_pointer (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/lambda/detail/
Dlambda_traits.hpp347 struct array_to_pointer { struct
348 typedef T type;
352 struct array_to_pointer <const T[N]> { struct
353 typedef const T* type;
356 struct array_to_pointer <T[N]> { struct
357 typedef T* type;
361 struct array_to_pointer <const T (&) [N]> { struct
362 typedef const T* type;
365 struct array_to_pointer <T (&) [N]> { struct
366 typedef T* type;