Created
May 23, 2019 21:58
-
-
Save jeremycochoy/3d3bd372aa3dbc8cc2c09da1095f3dc8 to your computer and use it in GitHub Desktop.
This file contains 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
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