m_size_func Function

private pure function m_size_func(this) result(size)

Returns the number of processes in the communicator

Type Bound

comm_t

Arguments

Type IntentOptional Attributes Name
class(comm_t), intent(in) :: this

Return Value integer


Source Code

   pure function m_size_func(this) result(size)
   !! Returns the number of processes in the communicator
      class(comm_t), intent(in) :: this
      integer :: size
      size = this%m_size
   end function m_size_func