Created
November 9, 2018 15:52
-
-
Save mathonsunday/b15b91640e77536f7658ed8e58b12077 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
@discardableResult | |
public mutating func pop() -> Value? { | |
defer { | |
head = head?.next | |
if isEmpty { | |
tail = nil | |
} | |
} | |
return head?.value | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment