Popularity
4.7
Declining
Activity
6.8
Stable
49
3
5
Monthly Downloads: 43,484
Programming language: Elixir
License: Apache License 2.0
Tags:
Text And Numbers
inet_cidr alternatives and similar packages
Based on the "Text and Numbers" category.
Alternatively, view inet_cidr alternatives based on common mentions on social networks and blogs.
-
money
Elixir library for working with Money safer, easier, and fun... Is an interpretation of the Fowler's Money pattern in fun.prog. -
nanoid
Elixir port of NanoID, a secure and URL-friendly unique ID generator. https://hex.pm/packages/nanoid -
secure_random
Convenience library for random base64 strings modeled after my love for Ruby's SecureRandom -
chinese_translation
An elixir module to translate simplified Chinese to traditional Chinese, and vice versa, based on wikipedia data -
Ex_Cldr_Units
Unit formatting (volume, area, length, ...) functions for the Common Locale Data Repository (CLDR) -
minigen
Pure random data generation library, appropriate for realistic simulations in the Erlang ecosystem
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of inet_cidr or a related project?
Popular Comparisons
README
InetCidr
Classless Inter-Domain Routing (CIDR) library for Elixir
This library has the following features:
- Compatible with Erlang's :inet module
- Supports IPv4 and IPv6
Install
defp deps do
[
{:inet_cidr, "~> 1.0.0"}
]
end
Usage
Parsing a CIDR string
iex(1)> InetCidr.parse("192.168.0.0/16")
{{192,168,0,0}, {192,168,255,255}, 16}
iex(2)> InetCidr.parse("2001:abcd::/32")
{{8193, 43981, 0, 0, 0, 0, 0, 0}, {8193, 43981, 65535, 65535, 65535, 65535, 65535, 65535}, 32}
Printing a CIDR block to string
iex(1)> "192.168.0.0/16" |> InetCidr.parse |> InetCidr.to_string
"192.168.0.0/16"
iex(2)> "2001:abcd::/32" |> InetCidr.parse |> InetCidr.to_string
"2001:ABCD::/32"
Check whether a CIDR block contains an IP address
iex(1)> cidr = InetCidr.parse("192.168.0.0/16")
{{192,168,0,0}, {192,168,255,255}, 16}
iex(2)> address1 = InetCidr.parse_address!("192.168.15.20")
{192,168,15,20}
iex(3)> InetCidr.contains?(cidr, address1)
true
iex(4)> address2 = InetCidr.parse_address!("10.168.15.20")
{10,168,15,20}
iex(5)> InetCidr.contains?(cidr, address2)
false
iex(1)> cidr = InetCidr.parse("2001:abcd::/32")
{{8193, 43981, 0, 0, 0, 0, 0, 0}, {8193, 43981, 65535, 65535, 65535, 65535, 65535, 65535}, 32}
iex(2)> address1 = InetCidr.parse_address!("2001:abcd::")
{8193, 43981, 0, 0, 0, 0, 0, 0}
iex(3)> InetCidr.contains?(cidr, address1)
true
iex(4)> address2 = InetCidr.parse_address!("abcd:2001::")
{43981, 8193, 0, 0, 0, 0, 0, 0}
iex(5)> InetCidr.contains?(cidr, address2)
false
License
[LICENSE](LICENSE)
*Note that all licence references and agreements mentioned in the inet_cidr README section above
are relevant to that project's source code only.