forked from mirror/ants
11 lines
375 B
Go
11 lines
375 B
Go
// Copyright 2019 Andy Pan. All rights reserved.
|
|
// Use of this source code is governed by an MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
/*
|
|
Library ants implements a goroutine pool with fixed capacity, managing and recycling a massive number of goroutines,
|
|
allowing developers to limit the number of goroutines in your concurrent programs.
|
|
*/
|
|
|
|
package ants
|