Skip to content

Instantly share code, notes, and snippets.

@jeremycochoy
Created May 23, 2019 21:58
Show Gist options
  • Save jeremycochoy/3d3bd372aa3dbc8cc2c09da1095f3dc8 to your computer and use it in GitHub Desktop.
Save jeremycochoy/3d3bd372aa3dbc8cc2c09da1095f3dc8 to your computer and use it in GitHub Desktop.
struct ListZipper<T> {
private var leftList: [T] = []
private var rightList: [T] = []
/// Cursor to the selected Track
var cursor: T? = nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment