Skip to content

Instantly share code, notes, and snippets.

@ksksue
Created December 3, 2014 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksksue/5641bc99a4a356043350 to your computer and use it in GitHub Desktop.
Save ksksue/5641bc99a4a356043350 to your computer and use it in GitHub Desktop.
// Queue初期化
Queue *queue = [[Queue alloc] initWithSize:128];
// NSDataをenqueue
NSData *indata = [[NSData alloc] init];
...
[queue enqueue:indata];
// すべてのNSDataをdequeue
while([queue count] > 0) {
NSData *outdata = (NSData*)[queue dequeue];
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment