Loading [MathJax]/extensions/tex2jax.js
WPILibC++
2025.3.1
Toggle main menu visibility
Main Page
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
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
Enumerations
a
b
c
d
e
f
h
i
l
m
n
o
p
r
s
t
u
v
Enumerator
a
b
c
f
h
i
k
l
m
o
p
s
t
u
w
Concepts
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
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
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
Enumerator
a
b
c
f
i
k
m
o
p
r
s
v
Related Symbols
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Files
File List
File 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
j
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
Enumerations
a
c
e
h
m
n
p
r
s
t
u
w
Enumerator
c
h
i
m
n
p
u
w
Macros
_
a
c
d
e
f
g
h
i
j
k
l
m
n
p
r
s
t
u
v
w
x
▼
WPILibC++
LICENSE
Deprecated List
Todo List
►
Topics
►
Namespaces
►
Concepts
►
Classes
▼
Files
▼
File List
►
cameraserver
►
debugging
►
fmt
►
frc
►
frc
►
frc
►
frc
►
frc
►
frc
►
frc2
►
frc2
►
generated
►
generated
►
generated
►
hal
►
networktables
►
thirdparty
►
thirdparty
►
thirdparty
►
units
►
vision
►
wpi
►
wpi
►
wpi
►
wpi
▼
wpi
►
ADL.h
►
AlignOf.h
►
AllocatorBase.h
►
bit.h
►
Casting.h
►
Chrono.h
►
Compiler.h
►
ConvertUTF.h
►
DenseMap.h
►
DenseMapInfo.h
►
DenseMapInfoVariant.h
►
Endian.h
►
EpochTracker.h
►
Errc.h
►
Errno.h
►
ErrorHandling.h
►
function_ref.h
►
FunctionExtras.h
►
Hashing.h
►
iterator.h
►
iterator_range.h
►
MapVector.h
►
MathExtras.h
►
MemAlloc.h
►
MemoryBuffer.h
►
PointerIntPair.h
►
PointerLikeTypeTraits.h
►
PointerUnion.h
►
raw_os_ostream.h
►
raw_ostream.h
►
ReverseIteration.h
►
SmallPtrSet.h
►
SmallSet.h
►
SmallString.h
►
SmallVector.h
►
SmallVectorMemoryBuffer.h
►
STLForwardCompat.h
►
StringExtras.h
►
SwapByteOrder.h
►
type_traits.h
►
VersionTuple.h
►
WindowsError.h
►
xxhash.h
►
wpi
►
wpi
►
wpi
►
wpimath
►
wpinet
cscore.h
►
cscore_c.h
►
cscore_cpp.h
►
cscore_cv.h
cscore_oo.h
►
cscore_raw.h
►
cscore_runloop.h
ntcore.h
►
ntcore_c.h
►
ntcore_cpp.h
►
ntcore_test.h
►
WPILibVersion.h
debugging.hpp
►
pb.h
►
pb_common.h
►
pb_decode.h
►
pb_encode.h
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
ReverseIteration.h
Go to the documentation of this file.
1
#ifndef WPIUTIL_WPI_REVERSEITERATION_H
2
#define WPIUTIL_WPI_REVERSEITERATION_H
3
4
#include "
wpi/PointerLikeTypeTraits.h
"
5
6
namespace
wpi
{
7
8
template
<
class
T =
void
*>
9
bool
shouldReverseIterate
() {
10
#if LLVM_ENABLE_REVERSE_ITERATION
11
return
detail::IsPointerLike<T>::value
;
12
#else
13
return
false
;
14
#endif
15
}
9
bool
shouldReverseIterate
() {
…
}
16
17
}
// namespace wpi
18
#endif
PointerLikeTypeTraits.h
wpi
Foonathan namespace.
Definition
ntcore_cpp.h:26
wpi::shouldReverseIterate
bool shouldReverseIterate()
Definition
ReverseIteration.h:9
wpi::detail::IsPointerLike
Definition
PointerLikeTypeTraits.h:46
wpi
ReverseIteration.h
Generated on Fri Feb 14 2025 07:31:46 for WPILibC++ by
1.12.0