TxChunk22
Constructors
Models
Combinators
appendconstAppends an element to the end of the TxChunk.appendAllconstConcatenates another chunk to the end of the TxChunk.concatconstConcatenates another TxChunk to the end of this TxChunk.dropconstDrops the first n elements from the TxChunk.filterconstFilters the TxChunk keeping only elements that satisfy the predicate.getconstReads the current chunk from the TxChunk.isEmptyconstChecks whether the TxChunk is empty.isNonEmptyconstChecks whether the TxChunk is non-empty.mapconstMaps each element of the TxChunk using a function that returns the same element type.modifyconstModifies the value of the TxChunk using the provided function.prependconstPrepends an element to the beginning of the TxChunk.prependAllconstConcatenates another chunk to the beginning of the TxChunk.setconstSets the value of the TxChunk.sizeconstGets the size of the TxChunk.sliceconstTakes a slice of the TxChunk from start to end (exclusive).takeconstTakes the first n elements from the TxChunk.updateconstUpdates the value of the TxChunk using the provided function.