mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-21 21:47:32 +02:00
7 lines
125 B
Go
7 lines
125 B
Go
package lo
|
|
|
|
// Clonable defines a constraint of types having Clone() T method.
|
|
type Clonable[T any] interface {
|
|
Clone() T
|
|
}
|