Skip to content

Instantly share code, notes, and snippets.

@ksoftllc
Created March 12, 2019 23:39
Show Gist options
  • Save ksoftllc/8ca18fa473ab5c31fd0a8fd44987c95d to your computer and use it in GitHub Desktop.
Save ksoftllc/8ca18fa473ab5c31fd0a8fd44987c95d to your computer and use it in GitHub Desktop.
//composing with another (String) -> String shape
let shout = addExclamation(uppercase(s))
//composing with (String) -> A shape
let url = URL(string: uppercase("http://google.com")
//composing with (A) -> String shape
let fromData = uppercase(String(data: data, encoding: .utf8))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment