github.com/timandy/routine@v1.1.4/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  }