finalize_3d Subroutine

private pure elemental subroutine finalize_3d(me)

Finalizer for bspline_3d class. Just a wrapper for destroy_3d.

Arguments

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

Calls

proc~~finalize_3d~~CallsGraph proc~finalize_3d bspline_oo_module::finalize_3d proc~destroy_3d bspline_oo_module::bspline_3d%destroy_3d proc~finalize_3d->proc~destroy_3d proc~destroy_base bspline_oo_module::bspline_class%destroy_base proc~destroy_3d->proc~destroy_base

Source Code

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