mirror of
https://github.com/IBM/fp-go.git
synced 2025-12-19 23:42:05 +02:00
6 lines
54 B
Go
6 lines
54 B
Go
|
|
package consumer
|
||
|
|
|
||
|
|
type (
|
||
|
|
Consumer[A any] = func(A)
|
||
|
|
)
|