finalize_4d Subroutine

private pure elemental subroutine finalize_4d(me)

Finalizer for bspline_4d class. Just a wrapper for destroy_4d.

Arguments

Type IntentOptional Attributes Name
type(bspline_4d), intent(inout) :: me

Calls

proc~~finalize_4d~~CallsGraph proc~finalize_4d bspline_oo_module::finalize_4d proc~destroy_4d bspline_oo_module::bspline_4d%destroy_4d proc~finalize_4d->proc~destroy_4d

Source Code

    pure elemental subroutine finalize_4d(me)
        type(bspline_4d),intent(inout) :: me; call me%destroy()
    end subroutine finalize_4d