WPILibC++ 2024.3.2
StringMap.h File Reference

This file defines the StringMap class. More...

#include "wpi/StringMapEntry.h"
#include "wpi/iterator.h"
#include "wpi/AllocatorBase.h"
#include "wpi/MemAlloc.h"
#include "wpi/SmallVector.h"
#include "wpi/iterator_range.h"
#include "wpi/PointerLikeTypeTraits.h"
#include <initializer_list>
#include <iterator>

Go to the source code of this file.

Classes

class  wpi::StringMapImpl
 StringMapImpl - This is the base class of StringMap that is shared among all of its instantiations. More...
 
class  wpi::StringMap< ValueTy, AllocatorTy >
 StringMap - This is an unconventional map that is specialized for handling keys that are "strings", which are basically ranges of bytes. More...
 
class  wpi::StringMapIterBase< DerivedTy, ValueTy >
 
class  wpi::StringMapConstIterator< ValueTy >
 
class  wpi::StringMapIterator< ValueTy >
 
class  wpi::StringMapKeyIterator< ValueTy >
 

Namespaces

namespace  wpi
 

Functions

template<typename ValueTy >
bool wpi::operator== (const StringMap< ValueTy > &lhs, const StringMap< ValueTy > &rhs)
 
template<typename ValueTy >
bool wpi::operator!= (const StringMap< ValueTy > &lhs, const StringMap< ValueTy > &rhs)
 
template<typename ValueTy >
bool wpi::operator< (const StringMap< ValueTy > &lhs, const StringMap< ValueTy > &rhs)
 
template<typename ValueTy >
bool wpi::operator<= (const StringMap< ValueTy > &lhs, const StringMap< ValueTy > &rhs)
 
template<typename ValueTy >
bool wpi::operator> (const StringMap< ValueTy > &lhs, const StringMap< ValueTy > &rhs)
 
template<typename ValueTy >
bool wpi::operator>= (const StringMap< ValueTy > &lhs, const StringMap< ValueTy > &rhs)
 

Detailed Description

This file defines the StringMap class.