Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(column), | intent(in) | :: | this |
pure function get_from_col_integer(this) result(col) class(column), intent(in) :: this integer(ik), dimension(this % n) :: col if (this % dtype /= INTEGER_NUM) error stop 'column is not of type integer' col = this % icol end function get_from_col_integer