Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active January 27, 2022 19:09
Show Gist options
  • Save percybolmer/7535e3580ba8274c876f57005cc53e81 to your computer and use it in GitHub Desktop.
Save percybolmer/7535e3580ba8274c876f57005cc53e81 to your computer and use it in GitHub Desktop.
// Moveable is a interface that is used to handle many objects that are moveable
// To implement this interface you need a Generic Type with a Constraint of Subtractable
type Moveable[S Subtractable] interface {
Move(S)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment