Last active
May 5, 2020 03:41
-
-
Save eMdOS/86bb05da34e470cbfd295b0eaeaf7003 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
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