pushAtGap
Pushes the given Byte at the current gap cursor.
fun MutableByteGapBuffer.pushAtGap( array: ByteArray, from: Int = 0, until: Int = array.size)
Content copied to clipboard
Pushes an array of Byte at the current gap cursor.
Pushes the given Char at the current gap cursor.
fun MutableCharGapBuffer.pushAtGap( array: CharArray, from: Int = 0, until: Int = array.size)
Content copied to clipboard
Pushes an array of Char at the current gap cursor.
Pushes the given EventIdentifier at the current gap cursor.
fun MutableEventIdentifierGapBuffer.pushAtGap( array: EventIdentifierArray, from: Int = 0, until: Int = array.size)
Content copied to clipboard
Pushes an array of EventIdentifier at the current gap cursor.
Pushes the given T at the current gap cursor.
fun <T> MutableGapBuffer<T>.pushAtGap( array: Array<T>, from: Int = 0, until: Int = array.size)
Content copied to clipboard
Pushes an array of T at the current gap cursor.
Pushes the given Int at the current gap cursor.
fun MutableIntGapBuffer.pushAtGap( array: IntArray, from: Int = 0, until: Int = array.size)
Content copied to clipboard
Pushes an array of Int at the current gap cursor.