Send the content of a buffer

Property definitions

mpi $ MPI :: send_from
	# Send the content of a buffer
	fun send_from(buffer: Sendable, at, count: Int, dest: Rank, tag: Tag, comm: Comm)
	do
		buffer.send(self, at, count, dest, tag, comm)
	end
lib/mpi/mpi.nit:60,2--64,4