reflect.Value.SetComplex (method)

7 uses

	reflect (current package)
		value.go#L1608: func (v Value) SetComplex(x complex128) {

	encoding/binary
		binary.go#L597: 		v.SetComplex(complex(
		binary.go#L602: 		v.SetComplex(complex(

	encoding/gob
		decode.go#L356: 	value.SetComplex(complex(real, imag))
		decode.go#L365: 	value.SetComplex(complex(real, imag))

	fmt
		scan.go#L1049: 			v.SetComplex(s.scanComplex(verb, v.Type().Bits()))

	text/template
		exec.go#L897: 		value.SetComplex(n.Complex128)