本文整理汇总了C++中Tags::constEnd方法的典型用法代码示例。如果您正苦于以下问题:C++ Tags::constEnd方法的具体用法?C++ Tags::constEnd怎么用?C++ Tags::constEnd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tags
的用法示例。
在下文中一共展示了Tags::constEnd方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: visit
void PertyRemoveTagVisitor::visit(const shared_ptr<Element>& e)
{
boost::uniform_real<> uni(0.0, 1.0);
Tags t = e->getTags();
for (Tags::const_iterator it = t.constBegin(); it != t.constEnd(); ++it)
{
const QString tagKey = it.key();
if (uni(*_rng) <= _p && !_exemptTagKeys.contains(tagKey))
{
if (!_replacementTagKeys.contains(tagKey))
{
LOG_DEBUG("Removing tag with key: " << tagKey << " ...");
e->getTags().remove(tagKey);
}
else
{
const int tagIndex = _replacementTagKeys.indexOf(tagKey);
const QString tagValue = _replacementTagValues.at(tagIndex);
LOG_DEBUG("Substituting value: " << tagValue << " for tag with key: " << tagKey);
e->getTags().set(tagKey, tagValue);
}
}
}
}
示例2: _overwriteRemainingTags
void TagComparator::_overwriteRemainingTags(Tags& t1, Tags& t2, Tags& result)
{
// Add t2 tags
for (Tags::ConstIterator it2 = t2.constBegin(); it2 != t2.constEnd(); ++it2)
{
if (it2.value().isEmpty() == false)
{
result[it2.key()] = it2.value();
}
}
// Add t1 tags overwriting any t2 tags in the process.
for (Tags::ConstIterator it1 = t1.constBegin(); it1 != t1.constEnd(); ++it1)
{
if (it1.value().isEmpty() == false)
{
result[it1.key()] = it1.value();
}
}
t1.clear();
t2.clear();
}