IEx.Helpers.port

You're seeing just the function port, go back to IEx.Helpers module for more information.
Link to this function

port(string)

View Source (since 1.8.0)

Creates a Port from string.

Examples

iex> port("0.4")
#Port<0.4>
Link to this function

port(major, minor)

View Source (since 1.8.0)

Creates a Port from two non-negative integers.

Examples

iex> port(0, 8080)
#Port<0.8080>
iex> port(0, 443)
#Port<0.443>