Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(column), | intent(in) | :: | this |
pure function get_from_col_real(this) result(col) class(column), intent(in) :: this real(rk), dimension(this % n) :: col if (this % dtype /= REAL_NUM) error stop 'column is not of type real' col = this % rcol end function get_from_col_real