fun Arb.Companion.string(minSize: Int = 0, maxSize: Int = 100, codepoints: Arb<Codepoint> = Arb.ascii()): Arb<String>
Returns an Arb where each random value is a String of length between minSize and maxSize. By default the arb uses a ascii codepoint generator, but this can be substituted with any codepoint generator. There are many available, such as katakana and so on.
The edge case values are a string of the min length, and a string of the max length, using the first edgecase codepoint provided by the codepoints arb.
fun Arb.Companion.string(range: IntRange, codepoints: Arb<Codepoint> = Arb.ascii()): Arb<String>