df_get_num_cols Function

private pure function df_get_num_cols(this) result(num_cols)

Type Bound

data_frame

Arguments

Type IntentOptional Attributes Name
class(data_frame), intent(in) :: this

Return Value integer


Source Code

    pure function df_get_num_cols(this) result(num_cols)
        class(data_frame), intent(in) :: this
        integer :: num_cols
        num_cols = this % num_cols
    end function df_get_num_cols