run_type Derived Type

type, public :: run_type

State carried in the merge-sort run stack used by ord_sort and sort_index helpers.


Components

Type Visibility Attributes Name Initial
integer(kind=int_index), public :: base = 0
integer(kind=int_index), public :: len = 0

Source Code

   type :: run_type
      !! State carried in the merge-sort run stack used by ord_sort and
      !! sort_index helpers.
      integer(int_index) :: base = 0
      integer(int_index) :: len = 0
   end type run_type