Type specific send full buffer over MPI

Property definitions

mpi $ Sendable :: send_all
	# Type specific send full buffer over MPI
	protected fun send_all(mpi: MPI, dest: Rank, tag: Tag, comm: Comm) is abstract
lib/mpi/mpi.nit:397,2--398,79

mpi :: mpi $ CIntArray :: send_all
	redef fun send_all(mpi, dest, tag, comm) do send(mpi, 0, length, dest, tag, comm)
lib/mpi/mpi.nit:470,2--82

mpi :: mpi $ Text :: send_all
	redef fun send_all(mpi, dest, tag, comm) do send(mpi, 0, length, dest, tag, comm)
lib/mpi/mpi.nit:433,2--82