var github.com/klauspost/compress/huff0.ErrUseRLE

8 uses

	github.com/klauspost/compress/huff0 (current package)
		build_table.go#L45: 		return ErrUseRLE
		build_table.go#L76: 			return ErrUseRLE
		compress.go#L75: 		return nil, false, ErrUseRLE
		compress.go#L199: 		return 0, 0, 0, ErrUseRLE
		huff0.go#L35: 	ErrUseRLE = errors.New("input is single value repeated")

	github.com/klauspost/compress/zstd
		blockenc.go#L390: 	case huff0.ErrUseRLE:
		blockenc.go#L554: 	case huff0.ErrUseRLE:
		dict.go#L491: 		if errors.Is(err, huff0.ErrUseRLE) {