Skip to content

Commit

Permalink
finalize
Browse files Browse the repository at this point in the history
  • Loading branch information
fnrizzi committed Dec 10, 2023
1 parent cc845bb commit bf31df1
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions docs/source/API/core/view/layoutLeft.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,37 +29,36 @@ Description

.. rubric:: Member Variables

.. cppkokkos:member:: static constexpr bool is_extent_constructible;
.. cppkokkos:member:: static constexpr bool is_extent_constructible = true
A boolean to allow detection that this class is extent constructible.

.. cppkokkos:member:: size_t dimension[ARRAY_LAYOUT_MAX_RANK]
.. cppkokkos:member:: size_t dimension[8]
An array containing the size of each dimension of the Layout.

.. rubric:: Constructors

.. cppkokkos:kokkokinlinefunction:: explicit constexpr LayoutLeft(size_t N0 = 0, size_t N1 = 0,
.. cppkokkos:kokkosinlinefunction:: explicit constexpr LayoutLeft(size_t N0 = 0, size_t N1 = 0, \
size_t N2 = 0, size_t N3 = 0, size_t N4 = 0, \
size_t N5 = 0, size_t N6 = 0, size_t N7 = 0);
size_t N5 = 0, size_t N6 = 0, size_t N7 = 0)

Constructor that takes in up to 8 sizes, to set the sizes of the corresponding dimensions of the Layout.


.. cppkokkos:function:: LayoutLeft(LayoutLeft const&) = default;
.. cppkokkos:function:: LayoutLeft(LayoutLeft const&) = default
Default copy constructor, element-wise copies the other Layout.

.. cppkokkos:function:: LayoutLeft(LayoutLeft&&) = default;
.. cppkokkos:function:: LayoutLeft(LayoutLeft&&) = default
Default move constructor, element-wise moves the other Layout.

.. rubric:: Assignment operators

.. cppkokkos:function:: LayoutLeft& operator=(LayoutLeft const&) = default;
.. cppkokkos:function:: LayoutLeft& operator=(LayoutLeft const&) = default
Default copy assignment, element-wise copies the other Layout.

.. cppkokkos:function:: LayoutLeft& operator=(LayoutLeft&&) = default;
.. cppkokkos:function:: LayoutLeft& operator=(LayoutLeft&&) = default
Default move assignment, element-wise moves the other Layout.

0 comments on commit bf31df1

Please sign in to comment.