(ns your.namespace
(:require [cidr.core :as cidr]))
(cidr/in-range? "192.168.0.1" "192.168.0.0/24") ; => true
(cidr/in-range? "192.167.0.1" "192.168.0.0/24") ; => false
(cidr/completely-in-range? "192.168.0.0/24" "192.168.0.0/16") ; => true
(cidr/overlap? "192.168.0.1/25" "192.168.0.1/24") ; => true
General utilities for dealing with CIDR.
Massive thanks must go to Keith Irwin for allowing me to lift the original code and package it up in to a library.
Copyright © 2015 Neil Prosser
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close