text/template/parse.NumberNode.IsUint (field)

12 uses

	text/template/parse (current package)
		node.go#L623: 	IsUint     bool       // Number has an unsigned integral value.
		node.go#L647: 		n.IsUint = true
		node.go#L673: 		n.IsUint = true
		node.go#L681: 			n.IsUint = true // in case of -0.
		node.go#L689: 	} else if n.IsUint {
		node.go#L707: 			if !n.IsUint && float64(uint64(f)) == f {
		node.go#L708: 				n.IsUint = true
		node.go#L713: 	if !n.IsInt && !n.IsUint && !n.IsFloat {
		node.go#L729: 		n.IsUint = float64(uint64(n.Float64)) == n.Float64
		node.go#L730: 		if n.IsUint {

	text/template
		exec.go#L614: 	case constant.IsUint:
		exec.go#L1016: 	if n, ok := n.(*parse.NumberNode); ok && n.IsUint {