Skip to content

Instantly share code, notes, and snippets.

@akisute
Created December 19, 2014 09:02
Show Gist options
  • Save akisute/c5af24002e4628d34b47 to your computer and use it in GitHub Desktop.
Save akisute/c5af24002e4628d34b47 to your computer and use it in GitHub Desktop.
var nextResponse = some_api(param)
while (UnsafePointer<Int8>.null != nextResponse) {
// do something with response, then
nextResponse = some_api(param)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment