Project

General

Profile

new_from_array Function

private function new_from_array(items, verbose, initial_size) result(this)

Arguments

Type IntentOptional AttributesName
class(*), intent(in), target:: items(:)
logical, intent(in), optional :: verbose
integer, intent(in), optional :: initial_size

Return Value type(vector)

Called By

proc~~new_from_array~~CalledByGraph proc~new_from_array new_from_array interface~vector vector interface~vector->proc~new_from_array

Source Code

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


© 2016
self was developed by
Documentation generated by FORD