reflect.Value.Complex (method)

11 uses

	reflect (current package)
		value.go#L796: func (v Value) Complex() complex128 {
		value.go#L1111: 		c := v.Complex()
		value.go#L2679: 	return makeComplex(v.flag.ro(), v.Complex(), t)

	encoding/binary
		binary.go#L673: 			x := v.Complex()
		binary.go#L677: 			x := v.Complex()

	encoding/gob
		encode.go#L228: 	c := v.Complex()
		encode.go#L448: 		return val.Complex() == 0

	fmt
		print.go#L753: 		p.fmtComplex(f.Complex(), 64, verb)
		print.go#L755: 		p.fmtComplex(f.Complex(), 128, verb)

	internal/fmtsort
		sort.go#L118: 		a, b := aVal.Complex(), bVal.Complex()