VarConnVector Interface

public interface VarConnVector

Module Procedures

private function vector_new_vector_empty() result(v)

Arguments

None

Return Value type(VarConnVector)

private function vector_new_vector_fill_size_kind(n, value) result(v)

Arguments

Type IntentOptional Attributes Name
integer(kind=GFTL_SIZE_KIND), intent(in) :: n
type(VarConnType), intent(in), optional :: value

Return Value type(VarConnVector)

private function vector_new_vector_fill_default(n, value) result(v)

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n
type(VarConnType), intent(in), optional :: value

Return Value type(VarConnVector)

private function vector_new_vector_range(first, last) result(v)

Arguments

Type IntentOptional Attributes Name
type(VarConnVectorIterator), intent(in) :: first
type(VarConnVectorIterator), intent(in) :: last

Return Value type(VarConnVector)

private function vector_new_vector_copy(x) result(v)

Arguments

Type IntentOptional Attributes Name
type(VarConnVector) :: x

Return Value type(VarConnVector)

private function vector_new_vector_initializer_list(il) result(v)

Arguments

Type IntentOptional Attributes Name
type(VarConnType), intent(in), dimension(:) :: il

Return Value type(VarConnVector)