IP.Range.is_in

You're seeing just the macro is_in, go back to IP.Range module for more information.
Link to this macro

is_in(range, ip)

View Source (macro)

true if the ip parameter is inside the range. ip must be a single ip address; if you need a membership function that accepts ranges or subnets, use Kernel.in/2.

Be aware of the parameter order, if you are using this after import IP.Range.

usable in guards.

iex> import IP
iex> IP.Range.is_in(~i"10.0.0.1..10.0.0.3", ~i"10.0.0.2")
true
iex> IP.Range.is_in(~i"10.0.0.1..10.0.0.3", ~i"10.0.0.5")
false