pushAtGap

fun MutableByteGapBuffer.pushAtGap(value: Byte)

Pushes the given Byte at the current gap cursor.


fun MutableByteGapBuffer.pushAtGap(    array: ByteArray,     from: Int = 0,     until: Int = array.size)

Pushes an array of Byte at the current gap cursor.


fun MutableCharGapBuffer.pushAtGap(value: Char)

Pushes the given Char at the current gap cursor.


fun MutableCharGapBuffer.pushAtGap(    array: CharArray,     from: Int = 0,     until: Int = array.size)

Pushes an array of Char at the current gap cursor.


fun MutableEventIdentifierGapBuffer.pushAtGap(value: EventIdentifier)

Pushes the given EventIdentifier at the current gap cursor.


fun MutableEventIdentifierGapBuffer.pushAtGap(    array: EventIdentifierArray,     from: Int = 0,     until: Int = array.size)

Pushes an array of EventIdentifier at the current gap cursor.


fun <T> MutableGapBuffer<T>.pushAtGap(value: T)

Pushes the given T at the current gap cursor.


fun <T> MutableGapBuffer<T>.pushAtGap(    array: Array<T>,     from: Int = 0,     until: Int = array.size)

Pushes an array of T at the current gap cursor.


fun MutableIntGapBuffer.pushAtGap(value: Int)

Pushes the given Int at the current gap cursor.


fun MutableIntGapBuffer.pushAtGap(    array: IntArray,     from: Int = 0,     until: Int = array.size)

Pushes an array of Int at the current gap cursor.