-
首页
-
C4D R23.110 C++ SDK
#include <contiguousrangemap.h>
详细描述
template<typename K, typename V, typename MAP = BurstTrieMapSelector<>>
class maxon::ContiguousRangeMap< K, V, MAP >
Unlike a normal map, a
RangeMap
maps whole ranges (of integral values) to values. For each contiguous range having the same value, only a single entry is needed, so a
RangeMap
will perform much better than a normal map if it is likely that consecutive keys are mapped to the same value.
RangeMap<UInt, String> map;
if
(!map.Insert(Range<UInt>(10, 40),
"Alice"
_s))
return
false
;
if
(!map.Insert(Range<UInt>(30, 50),
"Carol"
_s))
return
false
;
if
(!map.Erase(Range<UInt>(15, 25)))
return
false
;
The above example results in a map with three entries: The range 10 ... 14 is mapped to "Alice" as well as the range 26 ... 29, while the range 30 ... 50 is mapped to "Carol".
RangeMap
ensures that its ranges don't overlap, and that directly adjacent ranges (with no gap between them) which are mapped to the same value are merged to a single range.
RangeMap
supports the usual iterators. They iterate through the map per range.
-
Template Parameters
-
K
|
Type of keys. This must be an integral type.
|
V
|
Type of values.
|
MAP
|
A map selector template to choose the underlying map implementation to use. This has to be an ordered map. Note that the default is the
BurstTrieMap
which only allows unsigned integral types.
|
Member Typedef Documentation
◆
MapType
using
MapType
= typename MAP::template Type<K, V>
|
◆
Range
◆
ValueType
using
ValueType
= typename MapType::ValueType
|
◆
MapValue
using
MapValue
= typename MapType::ValueType
|
◆
ConstIterator
◆
Iterator
◆
ConstKeyIterator
◆
ConstValueIterator
构造函数 & 析构函数文档编制
◆
ContiguousRangeMap()
[1/2]
◆
ContiguousRangeMap()
[2/2]
成员函数文档编制
◆
MAXON_OPERATOR_MOVE_ASSIGNMENT()
◆
Init()
[1/2]
Result
<void> Init
|
(
|
const V &
|
value
|
)
|
|
Initializes the map. This has to be done before any of the other functions of this map are called.
◆
Init()
[2/2]
Result
<void> Init
|
(
|
V &&
|
value
|
)
|
|
Initializes the map. This has to be done before any of the other functions of this map are called.
◆
CopyFrom()
Makes this map a copy of src.
-
参数
-
[in]
|
src
|
Source from which the entries are taken.
|
-
返回
-
True if copying succeeded.
◆
GetMemorySize()
Int
GetMemorySize
|
(
|
|
)
|
const
|
Calculates the memory usage for this map. Keys and Values must have a public member GetMemorySize that return the element size.
-
返回
-
Memory size in bytes.
◆
Insert()
[1/4]
Result
<void> Insert
|
(
|
K
|
rMinValue
,
|
|
|
K
|
rMaxValue
,
|
|
|
V &&
|
value
|
|
)
|
|
|
Maps the range
rMinValue
...
rMaxValue
to
value
. Existing overlapping mappings are truncated, split or removed as necessary, or they are merged with the new mapping if their values are equal. If the range is empty (
rMaxValue
is less than
rMinValue
), nothing happens.
-
参数
-
[in]
|
rMinValue
|
Lower boundary of the range.
|
[in]
|
rMaxValue
|
Upper boundary of the range.
|
[in]
|
value
|
Value to which the range shall be mapped.
|
◆
Insert()
[2/4]
Result
<void> Insert
|
(
|
K
|
rMinValue
,
|
|
|
K
|
rMaxValue
,
|
|
|
const V &
|
value
|
|
)
|
|
|
Maps the range
rMinValue
...
rMaxValue
to
value
. Existing overlapping mappings are truncated, split or removed as necessary, or they are merged with the new mapping if their values are equal. If the range is empty (
rMaxValue
is less than
rMinValue
), nothing happens.
-
参数
-
[in]
|
rMinValue
|
Lower boundary of the range.
|
[in]
|
rMaxValue
|
Upper boundary of the range.
|
[in]
|
value
|
Value to which the range shall be mapped.
|
◆
Insert()
[3/4]
Result
<void> Insert
|
(
|
K
|
key
,
|
|
|
const V &
|
value
|
|
)
|
|
|
Maps the single value
key
(i.e., the range
key
...
key
consisting of a single element) to
value
. Existing mappings which overlap
key
are truncated, split or removed as necessary, or they may be extended to include
key
if their values are equal.
-
参数
-
[in]
|
key
|
A single key which shall be mapped.
|
[in]
|
value
|
Value to which the range shall be mapped.
|
◆
Insert()
[4/4]
Result
<void> Insert
|
(
|
const
Range
&
|
range
,
|
|
|
const V &
|
value
|
|
)
|
|
|
Maps the given
range
to
value
. Existing overlapping mappings are truncated, split or removed as necessary, or they are merged with the new mapping if their values are equal. If the range is empty, nothing happens.
-
参数
-
[in]
|
range
|
Range
which shall be mapped.
|
[in]
|
value
|
Value to which the range shall be mapped.
|
◆
FindValue()
const V* FindValue
|
(
|
K
|
key
|
)
|
const
|
Finds the value associated with the given
key
in this map. There always exists such a value, so this function never returns nullptr.
-
参数
-
[in]
|
key
|
Key to search for.
|
-
返回
-
Pointer to value for the given key, never nullptr.
◆
FindRange()
const V* FindRange
|
(
|
K
|
key
,
|
|
|
Range
&
|
rangeOut
|
|
)
|
|
const
|
Finds the value associated with the given
key
in this map. There always exists such a value, so this function never returns nullptr.
rangeOut
is set to the range.
-
参数
-
[in]
|
key
|
Key to search for.
|
[out]
|
rangeOut
|
rangeOut
is set to the found range.
|
-
返回
-
Pointer to value for the given key, never nullptr.
◆
ToString()
◆
Begin()
Returns an iterator pointing to the first entry of this map. The iteration order corresponds to the order of the ranges.
-
返回
-
Iterator for this map pointing to the first element.
◆
End()
Returns an iterator pointing just behind the last entry of this map. The iteration order corresponds to the order of the ranges.
-
返回
-
Iterator for this map pointing behind the last element.
◆
GetKeys()
Returns a foreach iterator to iterate over all keys (i.e., ranges) of this map. This will yield all ranges in ascending order.
-
返回
-
Foreach iterator over all keys (i.e., ranges).
◆
GetValues()
Returns a foreach iterator to iterate over all values of this map. This will yield all values in ascending order of the corresponding ranges.
-
返回
-
Foreach iterator over all values.
◆
GetMap()
◆
GetHashCode()
◆
operator==()
◆
operator!=()
◆
GetUnderlyingMap()
[1/2]
const
MapType
& GetUnderlyingMap
|
(
|
|
)
|
const
|
◆
GetUnderlyingMap()
[2/2]
◆
MAXON_DISALLOW_COPY_AND_ASSIGN()
Member Data Documentation
◆
_map
The underlying map which maps each start of a range to the mapped value. The range ends one before the start of the next range.