Type Definition mpw::Template [] [src]

type Template<'a> = &'a [&'a [char]];

A template is a slice of character slices. It describes which characters are valid at each position in a password.

For example, a template [[AB], [DC]] describes a password where the first character is either an A or a B, and the second character is either a D or a C.