github.com/timandy/routine@v1.1.4-0.20240507073150-e4a3e1fe2ba5/api_cloneable.go (about)

     1  package routine
     2  
     3  // Cloneable interface to support copy itself.
     4  type Cloneable interface {
     5  	// Clone create and returns a copy of this object.
     6  	Clone() any
     7  }