.. _Shape: Shape & dimensions ================================== **Synopsis**: .. code-block:: c template mini_vector get_shape(A const &); // R is the rank of A template size_t first_dim (A const & x); template size_t second_dim (A const & x); template size_t third_dim (A const & x); template size_t fourth_dim (A const & x); template size_t fifth_dim (A const & x); template size_t sixth_dim (A const & x); template size_t seventh_dim (A const & x); The shape and dimensions of any object modeling :ref:`ImmutableCuboidArray` is obtained using get_shape and xxx_dim functions : .. compileblock:: #include #include using namespace triqs::arrays; int main () { auto a = array (2,3); std::cout << get_shape(a)<< std::endl; std::cout << first_dim(a)<< std::endl; std::cout << second_dim(a)<< std::endl; }