Kernel.send
You're seeing just the function
send
, go back to Kernel module for more information.
Specs
send(dest :: Process.dest(), message) :: message when message: any()
Sends a message to the given dest
and returns the message.
dest
may be a remote or local PID, a local port, a locally
registered name, or a tuple in the form of {registered_name, node}
for a
registered name at another node.
Inlined by the compiler.
Examples
iex> send(self(), :hello)
:hello