finalize_1d Subroutine

private pure elemental subroutine finalize_1d(me)

Finalizer for bspline_1d class. Just a wrapper for destroy_1d.

Arguments

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

Calls

proc~~finalize_1d~~CallsGraph proc~finalize_1d bspline_oo_module::finalize_1d proc~destroy_1d bspline_oo_module::bspline_1d%destroy_1d proc~finalize_1d->proc~destroy_1d proc~destroy_base bspline_oo_module::bspline_class%destroy_base proc~destroy_1d->proc~destroy_base

Source Code

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