Skip to content

Instantly share code, notes, and snippets.

@eMdOS
Last active May 5, 2020 03:41
Show Gist options
  • Save eMdOS/86bb05da34e470cbfd295b0eaeaf7003 to your computer and use it in GitHub Desktop.
Save eMdOS/86bb05da34e470cbfd295b0eaeaf7003 to your computer and use it in GitHub Desktop.
extension Array: Semigroup {
public static func <> (left: Array, right: Array) -> Array {
left + right
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment