package com.github.libretube.extensions fun MutableList.move(oldPosition: Int, newPosition: Int) { val item = this.get(oldPosition) this.removeAt(oldPosition) this.add(newPosition, item) }