(KokkosALL)= # `Kokkos::ALL` Defined in header `` ```c++ namespace Kokkos{ constexpr UNSPECIFIED-TYPE ALL = IMPLEMENTATION-DETAIL; } ``` `Kokkos::ALL` is a constant of unspecified type that is used to select all elements in a dimension. ## Examples ```c++ Kokkos::View a("A",N0,N1); auto s = Kokkos::subview(a, 5, Kokkos::ALL, Kokkos::ALL); ```