Skip to content

Instantly share code, notes, and snippets.

@akio0911
Created July 2, 2020 14:40
Show Gist options
  • Select an option

  • Save akio0911/74165f828d753acc4a6a5ba2f01cc18c to your computer and use it in GitHub Desktop.

Select an option

Save akio0911/74165f828d753acc4a6a5ba2f01cc18c to your computer and use it in GitHub Desktop.
enum Value {
case string(String)
case int(Int)
}
let string: (String) -> Value = Value.string
let int: (Int) -> Value = Value.int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment