1*713a5d12SPushpinder Singh#pragma once 2*713a5d12SPushpinder Singh 3*713a5d12SPushpinder Singhnamespace std { 4*713a5d12SPushpinder Singh template<class T> constexpr const T& min(const T& a, const T& b); 5*713a5d12SPushpinder Singh template<class T> constexpr const T& max(const T& a, const T& b); 6*713a5d12SPushpinder Singh}