type net.IPMask

13 uses

	net (current package)
		ip.go#L41: type IPMask []byte
		ip.go#L46: 	Mask IPMask // network mask
		ip.go#L65: func IPv4Mask(a, b, c, d byte) IPMask {
		ip.go#L66: 	p := make(IPMask, IPv4len)
		ip.go#L77: func CIDRMask(ones, bits int) IPMask {
		ip.go#L85: 	m := make(IPMask, l)
		ip.go#L246: func (ip IP) DefaultMask() IPMask {
		ip.go#L270: func (ip IP) Mask(mask IPMask) IP {
		ip.go#L451: func simpleMaskLength(mask IPMask) int {
		ip.go#L481: func (m IPMask) Size() (ones, bits int) {
		ip.go#L490: func (m IPMask) String() string {
		ip.go#L497: func networkNumberAndMask(n *IPNet) (ip IP, m IPMask) {

	crypto/x509
		parser.go#L588: 				ips = append(ips, &net.IPNet{IP: net.IP(ip), Mask: net.IPMask(mask)})