MCPcopy Create free account
hub / github.com/ReactiveX/RxGo / bufferWithCountOperator

Struct bufferWithCountOperator

observable_operator.go:413–417  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

411}
412
413type bufferWithCountOperator struct {
414 count int
415 iCount int
416 buffer []interface{}
417}
418
419func (op *bufferWithCountOperator) next(ctx context.Context, item Item, dst chan<- Item, _ operatorOptions) {
420 op.buffer[op.iCount] = item.V

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected