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

12 uses

	text/template/parse (current package)
		node.go#L620: 	IsUint     bool       // Number has an unsigned integral value.
		node.go#L644: 		n.IsUint = true
		node.go#L670: 		n.IsUint = true
		node.go#L678: 			n.IsUint = true // in case of -0.
		node.go#L686: 	} else if n.IsUint {
		node.go#L704: 			if !n.IsUint && float64(uint64(f)) == f {
		node.go#L705: 				n.IsUint = true
		node.go#L710: 	if !n.IsInt && !n.IsUint && !n.IsFloat {
		node.go#L726: 		n.IsUint = float64(uint64(n.Float64)) == n.Float64
		node.go#L727: 		if n.IsUint {

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