Skip to content

Instantly share code, notes, and snippets.

@fgoinai
Created May 12, 2017 14:34
Show Gist options
  • Save fgoinai/49393d6a66b9b66f1e40c36c830b2864 to your computer and use it in GitHub Desktop.
Save fgoinai/49393d6a66b9b66f1e40c36c830b2864 to your computer and use it in GitHub Desktop.
private fun swap(list: MutableList<T>) : (Int, Int) -> Unit {
return fun(pos1: Int, pos2: Int): Unit {
return {
tmp = list[pos1]
list[pos1] = list[pos2]
list[pos2] = tmp
}()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment