pub fn ipv6(ip: &str) -> bool
Checks whether the given string is a valid IPv6 address.
if dator::ipv6("fe80::") { // "fe80::" is a valid IPv6 }
if !dator::ipv6("1.1.1.1") { // 1.1.1.1 is an invalid IPv6 }