Function
| Arg | Description | Type | 
|---|---|---|
| ip | An IP address | string (required) | 
| ranges | A list of CIDR notation network ranges | list of string (required) | 
Calculates if an IP address falls within a range of CIDR specified networks.
SELECT cidr_contains(ip="192.168.0.132",
                     ranges=["192.168.0.0/24", "127.0.0.1/8"])
FROM scope()