Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
a9ffaf8f
"git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "0d083702637ca61e7dd8533f6a3aa7558fce6d3b"
Commit
a9ffaf8f
authored
Sep 24, 2011
by
Davis King
Browse files
Added is_float_type.
parent
c0bb7952
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
dlib/algs.h
dlib/algs.h
+13
-0
No files found.
dlib/algs.h
View file @
a9ffaf8f
...
...
@@ -431,6 +431,19 @@ namespace dlib
is_same_type
();
};
// ----------------------------------------------------------------------------------------
/*!A is_float_type
This is a template that can be used to determine if a type is one of the built
int floating point types (i.e. float, double, or long double).
!*/
template
<
typename
T
>
struct
is_float_type
{
const
static
bool
value
=
false
;
};
template
<
>
struct
is_float_type
<
float
>
{
const
static
bool
value
=
true
;
};
template
<
>
struct
is_float_type
<
double
>
{
const
static
bool
value
=
true
;
};
template
<
>
struct
is_float_type
<
long
double
>
{
const
static
bool
value
=
true
;
};
// ----------------------------------------------------------------------------------------
/*!A is_convertible
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment