Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. protocol Stack {
  2. associatedtype Element
  3.  
  4. mutating func push(_ element: Element)
  5. mutating func pop()-> Element?
  6. var peek: Element? {
  7. get
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement