Control Surface
main
MIDI Control Surface library for Arduino
Toggle main menu visibility
Main Page
User Manual
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
u
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Typedefs
a
b
c
k
m
n
p
t
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
i
l
m
p
r
s
t
v
w
Enumerations
Enumerator
a
b
d
f
h
i
l
m
n
o
p
r
s
v
w
Related Symbols
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
d
e
g
i
l
m
o
p
s
u
v
Variables
c
e
f
h
i
l
m
n
o
p
s
u
v
Typedefs
a
b
c
e
f
i
k
m
n
p
s
t
u
v
Enumerations
Enumerator
Macros
a
b
c
d
e
f
h
i
n
u
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
src
AH
Math
MinMaxFix.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <
AH/Math/FixArduinoMacros.hpp
>
4
5
#include <
AH/Settings/NamespaceSettings.hpp
>
6
7
BEGIN_AH_NAMESPACE
8
11
template
<
class
T,
class
U>
12
constexpr
auto
min(
const
T
&
a
,
const
U
&b) ->
decltype
(b <
a
? b :
a
) {
13
return
b <
a
? b :
a
;
14
}
12
constexpr
auto
min(
const
T
&
a
,
const
U
&b) ->
decltype
(b <
a
? b :
a
) {
…
}
15
18
template
<
class
T,
class
U>
19
constexpr
auto
max(
const
T
&
a
,
const
U
&b) ->
decltype
(
a
< b ? b :
a
) {
20
return
a
< b ? b :
a
;
21
}
19
constexpr
auto
max(
const
T
&
a
,
const
U
&b) ->
decltype
(
a
< b ? b :
a
) {
…
}
22
23
END_AH_NAMESPACE
NamespaceSettings.hpp
END_AH_NAMESPACE
#define END_AH_NAMESPACE
Definition
AH/Settings/NamespaceSettings.hpp:14
BEGIN_AH_NAMESPACE
#define BEGIN_AH_NAMESPACE
Definition
AH/Settings/NamespaceSettings.hpp:11
FixArduinoMacros.hpp
AH::SPIShiftRegisterOut
A class for serial-in/parallel-out shift registers, like the 74HC595 that are connected to the SPI bu...
Definition
SPIShiftRegisterOut.hpp:28
Generated by
1.10.0