Program Listing for File range.hpp

Return to documentation for file (fang-mcb-project/src/util/math/arithmetic/range.hpp)

#pragma once

namespace fang::math
{
    template <typename T>
    struct Range
    {
        T min;
        T max;
    };
}