IEx.Helpers.port
You're seeing just the function
port
, go back to IEx.Helpers module for more information.
Creates a Port from string
.
Examples
iex> port("0.4")
#Port<0.4>
Creates a Port from two non-negative integers.
Examples
iex> port(0, 8080)
#Port<0.8080>
iex> port(0, 443)
#Port<0.443>