|
Classes |
class | IdentityMap |
| Identity mapping. More...
|
class | ConvertMap |
| Convert the Value of a map to another type. More...
|
class | AddMap |
| Sum of two maps. More...
|
class | ShiftMap |
| Shift a map with a constant. More...
|
class | SubMap |
| Difference of two maps. More...
|
class | MulMap |
| Product of two maps. More...
|
class | ScaleMap |
| Scales a maps with a constant. More...
|
class | DivMap |
| Quotient of two maps. More...
|
class | ComposeMap |
| Composition of two maps. More...
|
class | CombineMap |
| Combines of two maps using an STL (binary) functor. More...
|
class | NegMap |
| Negative value of a map. More...
|
class | AbsMap |
| Absolute value of a map. More...
|
class | FunctorMap |
| Converts an STL style functor to a map. More...
|
class | MapFunctor |
| Converts a map to an STL style (unary) functor. More...
|
class | ForkMap |
| Applies all map setting operations to two maps. More...
|
class | NotMap |
| Logical 'not' of a map. More...
|
class | StoreBoolMap |
| Writable bool map for store each true assigned elements. More...
|
class | BackInserterBoolMap |
| Writable bool map for store each true assigned elements in a back insertable container. More...
|
class | FrontInserterBoolMap |
| Writable bool map for store each true assigned elements in a front insertable container. More...
|
class | InserterBoolMap |
| Writable bool map for store each true assigned elements in an insertable container. More...
|
class | FillBoolMap |
| Fill the true setted elements with a given value. More...
|
class | SettingOrderBoolMap |
| Writable bool map which stores for each true assigned elements the setting order number. More...
|
Functions |
IdentityMap< T > | lemon::IdentityMap::identityMap () |
| Returns an IdentityMap class.
|
ConvertMap< M, T > | lemon::ConvertMap::convertMap (const M &m) |
| Returns an ConvertMap class.
|
AddMap< M1, M2 > | lemon::AddMap::addMap (const M1 &m1, const M2 &m2) |
| Returns an AddMap class.
|
ShiftMap< M, C > | lemon::ShiftMap::shiftMap (const M &m, const C &v) |
| Returns an ShiftMap class.
|
SubMap< M1, M2 > | lemon::SubMap::subMap (const M1 &m1, const M2 &m2) |
| Returns a SubMap class.
|
MulMap< M1, M2 > | lemon::MulMap::mulMap (const M1 &m1, const M2 &m2) |
| Returns a MulMap class.
|
ScaleMap< M, C > | lemon::ScaleMap::scaleMap (const M &m, const C &v) |
| Returns an ScaleMap class.
|
DivMap< M1, M2 > | lemon::DivMap::divMap (const M1 &m1, const M2 &m2) |
| Returns a DivMap class.
|
ComposeMap< M1, M2 > | lemon::ComposeMap::composeMap (const M1 &m1, const M2 &m2) |
| Returns a ComposeMap class.
|
CombineMap< M1, M2, F, V > | lemon::CombineMap::combineMap (const M1 &m1, const M2 &m2, const F &f) |
| Returns a CombineMap class.
|
NegMap< M > | lemon::NegMap::negMap (const M &m) |
| Returns a NegMap class.
|
AbsMap< M > | lemon::AbsMap::absMap (const M &m) |
| Returns a AbsMap class.
|
FunctorMap< F, K, V > | lemon::FunctorMap::functorMap (const F &f) |
| Returns a FunctorMap class.
|
MapFunctor< M > | lemon::MapFunctor::mapFunctor (const M &m) |
| Returns a MapFunctor class.
|
ForkMap< M1, M2 > | lemon::ForkMap::forkMap (const M1 &m1, const M2 &m2) |
| Returns an ForkMap class.
|
NotMap< M > | lemon::NotMap::notMap (const M &m) |
| Returns a NotMap class.
|