type github.com/google/go-cmp/cmp.Transform

14 uses

	github.com/google/go-cmp/cmp (current package)
		compare.go#L322: func (s *state) callTRFunc(f, v reflect.Value, step Transform) reflect.Value {
		compare.go#L617: 		if t, ok := ps.(Transform); ok {
		options.go#L308: 		if t, ok := s.curPath[i].(Transform); !ok {
		options.go#L321: 	step := Transform{&transform{pathStep{typ: tr.fnc.Type().Out(0)}, tr}}
		path.go#L62: 	_ PathStep = Transform{}
		path.go#L140: 		case Transform:
		path.go#L290: type Transform struct{ *transform }
		path.go#L296: func (tf Transform) Type() reflect.Type             { return tf.typ }
		path.go#L297: func (tf Transform) Values() (vx, vy reflect.Value) { return tf.vx, tf.vy }
		path.go#L298: func (tf Transform) String() string                 { return fmt.Sprintf("%s()", tf.trans.name) }
		path.go#L301: func (tf Transform) Name() string { return tf.trans.name }
		path.go#L304: func (tf Transform) Func() reflect.Value { return tf.trans.fnc }
		path.go#L308: func (tf Transform) Option() Option { return tf.trans }
		report_value.go#L72: 	case Transform: