Skip to content

Commit e930c6b

Browse files
authored
Merge pull request #41 from pipelined/unified-allocators
unify allocator interfaces
2 parents 52ae722 + a514850 commit e930c6b

30 files changed

+61
-61
lines changed

channel_floating.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

channel_floating_test.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

channel_signed.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

channel_signed_test.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

channel_unsigned.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

channel_unsigned_test.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example_pool_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func Example_pool() {
1313
// producer allocates new buffers
1414
produceFunc := func(allocs int, p *signal.PoolAllocator, c chan<- signal.Floating) {
1515
for i := 0; i < allocs; i++ {
16-
buf := p.GetFloat64()
16+
buf := p.Float64()
1717
buf.AppendSample(1.0)
1818
c <- buf
1919
}

float32.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

float32_test.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

float64.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)