feat: add one-cap word-list generator

This commit is contained in:
Michael Mandl 2024-03-21 13:23:42 +01:00
parent 32be1eaa95
commit b53a4edeee
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
3 changed files with 14 additions and 2 deletions

View file

@ -10,8 +10,6 @@ private:
std::map<const char, WordRefList> groups_;
public:
Bucket() = default;
void insert(const WordList &word_list, size_t first_index, size_t last_index);
std::forward_list<const std::string *>

View file

@ -11,6 +11,7 @@ public:
WordList &multiply(size_t factor);
WordList &shuffle();
static WordList oneCap();
static WordList fourCaps();
static WordList fromFile(const std::filesystem::path &path);