Skip to content

Instantly share code, notes, and snippets.

@yugr
Last active April 9, 2023 15:44
Show Gist options
  • Save yugr/4db31883cda2c2513e2705d5b3b475cb to your computer and use it in GitHub Desktop.
Save yugr/4db31883cda2c2513e2705d5b3b475cb to your computer and use it in GitHub Desktop.
Example min implementation
template<typename T>
const T &min(const T &a, const T &b) {
return b < a ? b : a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment