Return a skewed potentially long string
| 48 | |
| 49 | // Return a skewed potentially long string |
| 50 | string RandomSkewedString(int i, random::SimplePhilox* rnd) { |
| 51 | return BigString(NumberString(i), rnd->Skewed(17)); |
| 52 | } |
| 53 | |
| 54 | class StringDest : public WritableFile { |
| 55 | public: |
no test coverage detected