set_to_value_t Subroutine

public subroutine set_to_value_t(this, v)

Arguments

Type IntentOptional Attributes Name
class(value_t), intent(inout) :: this
real(kind=8), intent(in) :: v

Contents

Source Code


Source Code

    subroutine set_to_value_t(this, v)
        class(value_t), intent(inout)  :: this
        real(8), intent(in) :: v
        this%v = v
    end subroutine set_to_value_t