entryPointVector Interface

public interface entryPointVector

Module Procedures

private function vector_new_vector_empty() result(v)

Arguments

None

Return Value type(entryPointVector)

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(runEntryPoint), intent(in), optional :: value

Return Value type(entryPointVector)

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

Arguments

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

Return Value type(entryPointVector)

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

Arguments

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

Return Value type(entryPointVector)

private function vector_new_vector_copy(x) result(v)

Arguments

Type IntentOptional Attributes Name
type(entryPointVector) :: x

Return Value type(entryPointVector)

private function vector_new_vector_initializer_list(il) result(v)

Arguments

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

Return Value type(entryPointVector)