Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
Return the index of unique elements in array, which can be any intrinsic data types, as an integer array.
If array contains zero element or is of unsupported data types, an empty integer array is produced.
For example, index_unique([1, 2, 3, 1, 2, 3, 4, 5]) returns [1, 2, 3, 7, 8].
(KCW, 2024-03-22)
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Variables
Type
Visibility
Attributes
Name
Initial
character(len=:),
private,
allocatable
::
array_c(:)
integer,
private
::
i
logical,
private
::
mask_unique(size(array))
integer,
private
::
n
Source Code
pure function index_unique(array)use,intrinsic::iso_fortran_env,only:int32,int64,real32,real64class(*),intent(in)::array(:)integer,allocatable::index_unique(:)character(:),allocatable::array_c(:)integer::i,nlogical::mask_unique(size(array))n=size(array)if(n==0)then allocate(index_unique(0))return end ifmask_unique=.false.select type(array)type is(character(*))! Workaround for a bug in GNU Fortran >= 12. This is perhaps the manifestation of GCC Bugzilla Bug 100819.! When a character string array is passed as the actual argument to an unlimited polymorphic dummy argument,! its array index and length parameter are mishandled.allocate(character(len(array))::array_c(size(array)))array_c(:)=array(:)do i=1,nif(.not.any(array_c(i)==array_c.and.mask_unique))thenmask_unique(i)=.true.end if end do deallocate(array_c)type is(integer(int32))do i=1,nif(.not.any(array(i)==array.and.mask_unique))thenmask_unique(i)=.true.end if end do type is(integer(int64))do i=1,nif(.not.any(array(i)==array.and.mask_unique))thenmask_unique(i)=.true.end if end do type is(logical)do i=1,nif(.not.any((array(i).eqv.array).and.mask_unique))thenmask_unique(i)=.true.end if end do type is(real(real32))do i=1,nif(.not.any(array(i)==array.and.mask_unique))thenmask_unique(i)=.true.end if end do type is(real(real64))do i=1,nif(.not.any(array(i)==array.and.mask_unique))thenmask_unique(i)=.true.end if end do class defaultallocate(index_unique(0))return end selectindex_unique=pack([(i,i=1,n)],mask_unique)end function index_unique