package popper

  1. Overview
  2. Docs

Module Sample.StringSource

Sourceval of_length : int -> string t

of_length n is a sample that always produces a string of fixed size n.

Sourceval range : int -> int -> string t

range min max s is a sample that always produces a string of size n, where min <= n < max, using the given sample s.

Sourceval alpha_numeric : string t

alpha_numeric is a sample that produces strings containing alhpa-numeric characthers.

Sourceval numeric : string t

numeric is a sample that produces strings containing numbers

Sourceval alpha : string t

alpha a sample that produces strings containing characters a-z, both upper and lower case.

Sourceval upper : string t

upper is sample that always produces upper-case characters.

Sourceval lower : string t

upper is sample that always produces lower-case characters.