Created
November 5, 2017 16:40
-
-
Save olbrichj/61ede3b8358bed557aada27540e886ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let lowerCaseLetters : Gen<Character> = Gen<Character>.fromElements(in: "a"..."z") | |
let upperCaseLetters : Gen<Character> = Gen<Character>.fromElements(in: "A"..."Z") | |
let numeric : Gen<Character> = Gen<Character>.fromElements(in: "0"..."9") | |
let special : Gen<Character> = Gen<Character>.fromElements(of: ["!", "#", "$", "%", "&", "'", "*", "+", "-", "/", "=", "?", "^", "_", "`", "{", "|", "}", "~", "."]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment