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 {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |