Count of the given data_type in this communication

Property definitions

mpi $ Status :: count
	# Count of the given `data_type` in this communication
	fun count(data_type: DataType): Int
	`{
		int count;
		MPI_Get_count(self, data_type, &count);
		return count;
	`}
lib/mpi/mpi.nit:254,2--260,3