pos_1d_int64_int64 Function

private function pos_1d_int64_int64(this, i) result(pt)

Type Bound

shared_ragged_array_int64_t

Arguments

Type IntentOptional Attributes Name
class(shared_ragged_array_int64_t), intent(inout) :: this
integer(kind=int64), intent(in) :: i

Return Value integer(kind=int64), pointer, (:)


Contents

Source Code


Source Code

    function pos_1d_int64_int64(this, i) result(pt)
        class(shared_ragged_array_int64_t), intent(inout) :: this
        integer(int64), intent(in) :: i
        integer(int64), pointer :: pt(:)

        pt => this%ptr(i)%res
    end function pos_1d_int64_int64