Created
May 13, 2016 14:41
-
-
Save cocuh/9d521d86afbf11f25a29fe2173a24654 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
trait Queue<T> { | |
} | |
struct FifoQueue<T>{ | |
data: Vec<T> | |
} | |
struct JobQueue<J, Q=FifoQueue<J>> { | |
queue: Q, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment