Returns an iterator that iterates over all subnet IPs.
```rust use subnetwork::{Ipv4Pool,Ipv4};
fn func_1() { let ips = Ipv4Pool::new("192.168.1.0/24").unwrap(); for i in ips { println!("{:?}", i); } let ret = ips.contain("192.168.1.200").unwrap(); println!("{:?}", ret); }
fn func_2() { let ip = Ipv4::new("192.168.1.1").unwrap(); for i in ip.iter(24) { println!("{:?}", i); } let ret = ip.within("192.168.1.0/24").unwarp(); println!("{:?}", ret); } ``` Output
bash
192.168.1.1
192.168.1.2
192.168.1.3
192.168.1.4
192.168.1.5
192.168.1.6
192.168.1.7
192.168.1.8
192.168.1.9
...
192.168.1.255
true
You can see how our performance compares to other similar libraries here.