pos_2d_cmplx_int32 Function

private function pos_2d_cmplx_int32(this, i, j) result(val)

Type Bound

shared_ragged_array_cmplx_t

Arguments

Type IntentOptional Attributes Name
class(shared_ragged_array_cmplx_t), intent(inout) :: this
integer(kind=int32), intent(in) :: i
integer(kind=int32), intent(in) :: j

Return Value complex(kind=dp)


Contents

Source Code


Source Code

    function pos_2d_cmplx_int32(this, i, j) result(val)
        class(shared_ragged_array_cmplx_t), intent(inout) :: this
        integer(int32), intent(in) :: i, j
        complex(dp) :: val

        val = this%ptr(i)%res(j)
    end function pos_2d_cmplx_int32