finalize_2d Subroutine

private pure elemental subroutine finalize_2d(me)

Finalizer for bspline_2d class. Just a wrapper for destroy_2d.

Arguments

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

Calls

proc~~finalize_2d~~CallsGraph proc~finalize_2d bspline_oo_module::finalize_2d proc~destroy_2d bspline_oo_module::bspline_2d%destroy_2d proc~finalize_2d->proc~destroy_2d proc~destroy_base bspline_oo_module::bspline_class%destroy_base proc~destroy_2d->proc~destroy_base

Source Code

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