Stack
public class Stack<T>
                Implements a stack - helper class that uses an array internally.
- 
                  
                  
Undocumented
Declaration
Swift
public var isEmpty: Bool { get } - 
                  
                  
Undocumented
Declaration
Swift
public func push(_ thing: T) - 
                  
                  
Undocumented
Declaration
Swift
public func pop() -> T 
View on GitHub
        Stack Class Reference