type net.IPMask

13 uses

	net (current package)
		ip.go#L43: type IPMask []byte
		ip.go#L48: 	Mask IPMask // network mask
		ip.go#L67: func IPv4Mask(a, b, c, d byte) IPMask {
		ip.go#L68: 	p := make(IPMask, IPv4len)
		ip.go#L79: func CIDRMask(ones, bits int) IPMask {
		ip.go#L87: 	m := make(IPMask, l)
		ip.go#L248: func (ip IP) DefaultMask() IPMask {
		ip.go#L272: func (ip IP) Mask(mask IPMask) IP {
		ip.go#L379: func simpleMaskLength(mask IPMask) int {
		ip.go#L409: func (m IPMask) Size() (ones, bits int) {
		ip.go#L418: func (m IPMask) String() string {
		ip.go#L425: func networkNumberAndMask(n *IPNet) (ip IP, m IPMask) {

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