github.com/google/go-cmp/cmp.diffStats.NumRemoved (field)

10 uses

	github.com/google/go-cmp/cmp (current package)
		report_compare.go#L424: 			lastStats(2).NumRemoved++
		report_slices.go#L386: 		nx := appendChunks(vx.Slice(0, ds.NumIdentical+ds.NumRemoved+ds.NumModified), diffRemoved)
		report_slices.go#L416: 			lastStats(2).NumRemoved++
		report_slices.go#L437: 			hadX, hadY := prev.NumRemoved > 0, prev.NumInserted > 0
		report_slices.go#L438: 			hasX, hasY := next.NumRemoved > 0, next.NumInserted > 0
		report_text.go#L369: 	NumRemoved   int
		report_text.go#L380: 	return s.NumRemoved + s.NumInserted + s.NumModified
		report_text.go#L387: 	s.NumRemoved += ds.NumRemoved
		report_text.go#L401: 	counts := [...]int{s.NumIgnored, s.NumIdentical, s.NumRemoved, s.NumInserted, s.NumModified}