Skip to content

Instantly share code, notes, and snippets.

@vikingosegundo
Created March 25, 2022 13:00
Show Gist options
  • Save vikingosegundo/9be7262082a3e94ec94ff874d6fc46f7 to your computer and use it in GitHub Desktop.
Save vikingosegundo/9be7262082a3e94ec94ff874d6fc46f7 to your computer and use it in GitHub Desktop.
typealias _Stack<T> = (
push : (T) -> (),
pop : ( ) -> T?,
peek : ( ) -> T?,
string: ( ) -> String
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment