Project

General

Profile

new_empty Function

private function new_empty(verbose, initial_size) result(this)

Arguments

Type IntentOptional AttributesName
logical, intent(in), optional :: verbose
integer, intent(in), optional :: initial_size

Return Value type(vector)

Called By

proc~~new_empty~~CalledByGraph proc~new_empty new_empty interface~vector vector interface~vector->proc~new_empty

Source Code

    function new_empty(verbose, initial_size) result(this)
        logical, optional, intent(in) :: verbose
        integer, optional, intent(in) :: initial_size
        type(vector) :: this
        print *, 'vector%new_empty begin'
        this%vector_ref = vector_ref(verbose, initial_size)
        print *, 'vector%new_empty end'
    end function new_empty


© 2016
self was developed by
Documentation generated by FORD