Get an element of the 6-index integrals from the densely stored container
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(dense_lMat_t), | intent(in) | :: | this | |||
| integer(kind=int64), | intent(in) | :: | index |
position of the element |
function get_elem_dense(this, index) result(element) class(dense_lMat_t), intent(in) :: this integer(int64), intent(in) :: index HElement_t(dp) :: element element = this%lMat_vals%ptr(index) end function get_elem_dense