carl  24.04
Computer ARithmetic Library
typetraits.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace carl {
4 
5 /**
6 * States whether a given type is an `Interval`.
7 * By default, a type is not.
8 */
9 template <class Number>
10 struct is_interval_type : std::false_type {};
11 
12 }
carl is the main namespace for the library.
States whether a given type is an Interval.
Definition: typetraits.h:10