type net.IPMask

13 uses

	net (current package)
		ip.go#L42: type IPMask []byte
		ip.go#L47: 	Mask IPMask // network mask
		ip.go#L66: func IPv4Mask(a, b, c, d byte) IPMask {
		ip.go#L67: 	p := make(IPMask, IPv4len)
		ip.go#L78: func CIDRMask(ones, bits int) IPMask {
		ip.go#L86: 	m := make(IPMask, l)
		ip.go#L247: func (ip IP) DefaultMask() IPMask {
		ip.go#L271: func (ip IP) Mask(mask IPMask) IP {
		ip.go#L378: func simpleMaskLength(mask IPMask) int {
		ip.go#L408: func (m IPMask) Size() (ones, bits int) {
		ip.go#L417: func (m IPMask) String() string {
		ip.go#L424: func networkNumberAndMask(n *IPNet) (ip IP, m IPMask) {

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