unique_values Function

public function unique_values(list) result(unique)

Uses

    • stdlib_sorting
  • proc~~unique_values~~UsesGraph proc~unique_values unique_values stdlib_sorting stdlib_sorting proc~unique_values->stdlib_sorting

Find unique values in a list of integers It uses the standard library sorting module The result is a list of unique integers

Arguments

Type IntentOptional Attributes Name
integer(kind=i4), intent(in) :: list(:)

Input list of integers

Return Value integer(kind=i4), allocatable, (:)

Output list of unique integers


Calls

proc~~unique_values~~CallsGraph proc~unique_values unique_values sort sort proc~unique_values->sort