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

12 uses

	text/template/parse (current package)
		node.go#L618: 	IsUint     bool       // Number has an unsigned integral value.
		node.go#L642: 		n.IsUint = true
		node.go#L668: 		n.IsUint = true
		node.go#L676: 			n.IsUint = true // in case of -0.
		node.go#L684: 	} else if n.IsUint {
		node.go#L702: 			if !n.IsUint && float64(uint64(f)) == f {
		node.go#L703: 				n.IsUint = true
		node.go#L708: 	if !n.IsInt && !n.IsUint && !n.IsFloat {
		node.go#L724: 		n.IsUint = float64(uint64(n.Float64)) == n.Float64
		node.go#L725: 		if n.IsUint {

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