1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
|
// ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2018, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
#ifndef SEQAN_HEADER_MAP_ADAPTER_STL_H
#define SEQAN_HEADER_MAP_ADAPTER_STL_H
//////////////////////////////////////////////////////////////////////////////
namespace seqan
{
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
struct Value< std::map<TKey, TCargo, TCompare, TAlloc> >
{
typedef Pair<TKey,TCargo> Type;
};
template <typename TKey, typename TCompare, typename TAlloc>
struct Value< std::set<TKey, TCompare, TAlloc> >
{
typedef bool Type;
};
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
struct Key< std::map<TKey,TCargo, TCompare, TAlloc> >
{
typedef TKey Type;
};
template <typename TKey, typename TCompare, typename TAlloc>
struct Key< std::set<TKey, TCompare, TAlloc> >
{
typedef TKey Type;
};
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
struct Cargo< std::map<TKey,TCargo, TCompare, TAlloc> >
{
typedef TCargo Type;
};
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TCompare, typename TAlloc>
struct Size< std::set<TKey, TCompare, TAlloc> >
{
//typedef std::set<TKey>::size_type Type;
typedef unsigned Type;
};
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
struct Size< std::map<TKey,TCargo, TCompare, TAlloc> >
{
//typedef std::map<TKey,TCargo>::size_type Type;
typedef unsigned Type;
};
//////////////////////////////////////////////////////////////////////////////
// traits for stl usage
/*
template <typename TKey, typename TCompare, typename TAlloc>
struct AllocatorType< std::set<TKey, TCompare, TAlloc> >
{
typedef TAlloc Type;
};
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
struct AllocatorType< std::map<TKey, TCargo, TCompare, TAlloc> >
{
typedef TAlloc Type;
};
template <typename T>
struct StlComparator_;
template <typename TKey, typename TCompare, typename TAlloc>
struct StlComparator_< std::set<TKey, TCompare, TAlloc> >
{
typedef TCompare Type;
};
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
struct StlComparator_< std::map<TKey, TCargo, TCompare, TAlloc> >
{
typedef TCompare Type;
};
*/
// TODO(rmaerker): Default type should not be int.
// TODO(rmaerker): Metafunction for const iterator is missing.
template <typename T>
struct StlIterator_
{
typedef int Type;
};
template <typename TKey, typename TCompare, typename TAlloc>
struct StlIterator_< std::set<TKey, TCompare, TAlloc> >
{
typedef typename std::set<TKey, TCompare, TAlloc>::iterator Type;
};
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
struct StlIterator_< std::map<TKey, TCargo, TCompare, TAlloc> >
{
typedef typename std::map<TKey, TCargo, TCompare, TAlloc>::iterator Type;
};
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TCompare, typename TAlloc>
inline void
assign(std::set<TKey, TCompare, TAlloc> & target,
std::set<TKey, TCompare, TAlloc> const & source)
{
target = source;
}
template <typename TKey,typename TCargo, typename TCompare, typename TAlloc>
inline void
assign(std::map<TKey,TCargo, TCompare, TAlloc> & target,
std::map<TKey,TCargo, TCompare, TAlloc> const & source)
{
target = source;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc, typename TKey2>
inline bool
hasKey(std::set<TValue,TCompare,TAlloc> & me, TKey2 const & _key)
{
return (me.count(_key) != 0);
}
template <typename TValue, typename TCompare, typename TAlloc, typename TKey2>
inline bool
hasKey(std::set<TValue,TCompare,TAlloc> const & me, TKey2 const & _key)
{
return (me.count(_key) != 0);
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TKey2>
inline bool
hasKey(std::map<TKey, TCargo, TCompare, TAlloc> & me, TKey2 const & _key)
{
return (me.count(_key) != 0);
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TKey2>
inline bool
hasKey(std::map<TKey, TCargo, TCompare, TAlloc> const & me, TKey2 const & _key)
{
return (me.count(_key) != 0);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc>
inline typename Size< std::set<TValue, TCompare, TAlloc> >::Type
length(std::set<TValue, TCompare, TAlloc> const & me)
{
return me.size();
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
inline typename Size< std::map<TKey,TCargo, TCompare, TAlloc> >::Type
length(std::map<TKey,TCargo, TCompare, TAlloc> const & me)
{
return me.size();
}
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc, typename TValue2>
inline void
insert(std::set<TValue, TCompare, TAlloc> & me,TValue2 const & _value)
{
me.insert(_value);
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TKey2, typename TCargo2>
inline void
insert(std::map<TKey,TCargo, TCompare, TAlloc> & me,
TKey2 const & _key,
TCargo2 const & _cargo)
{
me[_key] = _cargo;
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TKey2>
inline void
insert(std::map<TKey,TCargo, TCompare, TAlloc> & me,TKey2 const & _key)
{
insert(me, _key, TCargo());
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TKey2, typename TCargo2, typename TSpec>
inline void
insert(std::map<TKey,TCargo, TCompare, TAlloc> & me, Pair<TKey2,TCargo2,TSpec> const & _value)
{
insert(me, _value.i1, _value.i2);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc>
inline void
clear(std::set<TValue, TCompare, TAlloc> & me)
{
me.clear();
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
inline void
clear(std::map<TKey,TCargo, TCompare, TAlloc> & me)
{
me.clear();
}
//////////////////////////////////////////////////////////////////////////////
//template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TKey2>
//inline typename Value< std::map<TKey,TCargo, TCompare, TAlloc> >::Type &
//value(std::map<TKey,TCargo, TCompare, TAlloc> & me,
// TKey2 const & _key)
//{
// return me[_key];
//}
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TKey2>
inline typename Cargo< std::map<TKey,TCargo, TCompare, TAlloc> >::Type &
cargo(std::map<TKey,TCargo, TCompare, TAlloc> & me,
TKey2 const & _key)
{
return me[_key];
}
//////////////////////////////////////////////////////////////////////////////
struct StlSetIterator;
struct StlMapIterator;
//////////////////////////////////////////////////////////////////////////////
// MapIterator //
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TIteratorSpec>
struct Iterator< std::map<TKey,TCargo, TCompare, TAlloc> , TIteratorSpec >
{
typedef std::map<TKey,TCargo, TCompare, TAlloc> TStlMap_;
typedef Iter<TStlMap_, StlMapIterator> Type;
};
template <typename TStlMap>
class Iter<TStlMap, StlMapIterator>
{
public:
//typedef typename std::map<typename Key<TSTLMap>::Type,
// typename Cargo<TSTLMap>::Type,
// typename StlComparator_<TStlMap>::Type,
// typename AllocatorType<TStlMap>::Type >::iterator THostIter;
typedef typename StlIterator_<TStlMap>::Type THostIter;
THostIter _iter;
Holder<TStlMap> host_map_holder;
Iter()
{
}
Iter(Iter const & other)
: _iter(other._iter)
{
host_map_holder = other.host_map_holder;
}
Iter(TStlMap & map)
: _iter(map.begin())
{
setValue(host_map_holder,map);
}
~Iter()
{
}
Iter const &
operator = (Iter const & other)
{
host_map_holder = other.host_map_holder;
_iter = other._iter;
return *this;
}
operator bool () const
{
return (_iter != value(host_map_holder).end());
}
};
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline bool
operator == (Iter<TStlMap, StlMapIterator> const & left,
Iter<TStlMap, StlMapIterator> const & right)
{
return left._iter == right._iter;
}
template <typename TStlMap>
inline bool
operator != (Iter<TStlMap, StlMapIterator> const & left,
Iter<TStlMap, StlMapIterator> const & right)
{
return left._iter != right._iter;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TIteratorSpec>
inline typename Iterator< std::map<TKey,TCargo, TCompare, TAlloc>, TIteratorSpec>::Type
begin(std::map<TKey,TCargo, TCompare, TAlloc> & me,
TIteratorSpec)
{
typedef std::map<TKey,TCargo, TCompare, TAlloc> TStlMap;
typedef typename Iterator<TStlMap , TIteratorSpec>::Type TIterator;
return TIterator(me);
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
inline typename Iterator< std::map<TKey,TCargo, TCompare, TAlloc> >::Type
begin(std::map<TKey,TCargo, TCompare, TAlloc> & me)
{
typedef std::map<TKey,TCargo, TCompare, TAlloc> TStlMap;
typedef typename Iterator<TStlMap>::Type TIterator;
return TIterator(me);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TIteratorSpec>
inline typename Iterator< std::map<TKey,TCargo, TCompare, TAlloc> >::Type
end(std::map<TKey,TCargo, TCompare, TAlloc> & me,
TIteratorSpec)
{
typedef std::map<TKey,TCargo, TCompare, TAlloc> TStlMap;
typedef typename Iterator<TStlMap, TIteratorSpec>::Type TIterator;
TIterator _iter(me);
_iter._iter = me.end();
return _iter;
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc>
inline typename Iterator< std::map<TKey,TCargo, TCompare, TAlloc> >::Type
end(std::map<TKey,TCargo, TCompare, TAlloc> & me)
{
typedef std::map<TKey,TCargo, TCompare, TAlloc> TStlMap;
typedef typename Iterator<TStlMap>::Type TIterator;
TIterator _iter(me);
_iter._iter = me.end();
return _iter;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline bool
atEnd(Iter<TStlMap, StlMapIterator> & it)
{
return (it._iter == value(it.host_map_holder).end());
}
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline void
goNext(Iter<TStlMap, StlMapIterator> & it)
{
it._iter++;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline typename Value<TStlMap>::Type &
value(Iter<TStlMap, StlMapIterator> & it)
{
return it._iter->second;
}
template <typename TStlMap>
inline typename Value<TStlMap>::Type &
value(Iter<TStlMap, StlMapIterator> const & it)
{
return it._iter->second;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline typename Key<TStlMap>::Type const &
key(Iter<TStlMap, StlMapIterator> & it)
{
return it._iter->first;
}
template <typename TStlMap>
inline typename Key<TStlMap>::Type const &
key(Iter<TStlMap, StlMapIterator> const & it)
{
return it._iter->first;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline typename Cargo<TStlMap>::Type &
cargo(Iter<TStlMap, StlMapIterator> & it)
{
return it._iter->second;
}
template <typename TStlMap>
inline typename Cargo<TStlMap>::Type &
cargo(Iter<TStlMap, StlMapIterator> const & it)
{
return it._iter->second;
}
////////////////////////////////////////////////////////////////////////////////
// SetIterator //
////////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc, typename TIteratorSpec>
struct Iterator< std::set<TValue, TCompare, TAlloc> , TIteratorSpec >
{
typedef std::set<TValue, TCompare, TAlloc> TStlSet_;
typedef Iter<TStlSet_, StlSetIterator> Type;
};
template <typename TStlMap>
class Iter< TStlMap, StlSetIterator>
{
public:
//typedef typename std::set<typename Key<TSTLMap>::Type,
// typename StlComparator_<TSTLMap>::Type,
// typename AllocatorType<TSTLMap>::Type >::iterator THostIter;
typedef typename StlIterator_<TStlMap>::Type THostIter;
THostIter _iter;
Holder<TStlMap> host_map_holder;
Iter()
{
}
Iter(Iter const & other)
: _iter(other._iter)
{
host_map_holder = other.host_map_holder;
}
Iter(TStlMap & map)
: _iter(map.begin())
{
setValue(host_map_holder,map);
}
~Iter()
{
}
Iter const &
operator = (Iter const & other)
{
host_map_holder = other.host_map_holder;
_iter = other._iter;
return *this;
}
operator bool () const
{
return (_iter != value(host_map_holder).end());
}
};
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline bool
operator == (Iter<TStlMap, StlSetIterator> const & left,
Iter<TStlMap, StlSetIterator> const & right)
{
return left._iter == right._iter;
}
template <typename TStlMap>
inline bool
operator != (Iter<TStlMap, StlSetIterator> const & left,
Iter<TStlMap, StlSetIterator> const & right)
{
return left._iter != right._iter;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc, typename TIteratorSpec>
inline typename Iterator< std::set<TValue,TCompare,TAlloc>, TIteratorSpec>::Type
begin(std::set<TValue,TCompare,TAlloc> & me,
TIteratorSpec)
{
typedef std::set<TValue,TCompare,TAlloc> TStlMap;
typedef typename Iterator<TStlMap , TIteratorSpec>::Type TIterator;
return TIterator(me);
}
template <typename TValue, typename TCompare, typename TAlloc>
inline typename Iterator< std::set<TValue,TCompare,TAlloc> >::Type
begin(std::set<TValue,TCompare,TAlloc> & me)
{
typedef std::set<TValue,TCompare,TAlloc> TStlMap;
typedef typename Iterator<TStlMap>::Type TIterator;
return TIterator(me);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc, typename TIteratorSpec>
inline typename Iterator< std::set<TValue, TCompare, TAlloc>, TIteratorSpec>::Type
end(std::set<TValue, TCompare, TAlloc> & me,
TIteratorSpec)
{
typedef std::set<TValue,TCompare,TAlloc> TStlMap;
typedef typename Iterator<TStlMap, TIteratorSpec>::Type TIterator;
TIterator _iter(me);
_iter._iter = me.end();
return _iter;
}
template <typename TValue, typename TCompare, typename TAlloc>
inline typename Iterator< std::set<TValue,TCompare,TAlloc> >::Type
end(std::set<TValue,TCompare,TAlloc> & me)
{
typedef std::set<TValue,TCompare,TAlloc> TStlMap;
typedef typename Iterator<TStlMap>::Type TIterator;
TIterator _iter(me);
_iter._iter = me.end();
return _iter;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline bool
atEnd(Iter<TStlMap, StlSetIterator> & it)
{
return (it._iter == value(it.host_map_holder).end());
}
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline void
goNext(Iter<TStlMap, StlSetIterator> & it)
{
it._iter++;
}
//////////////////////////////////////////////////////////////////////////////
//
//template <typename TStlMap>
//inline typename Value<TStlMap>::Type &
//value(Iter<TStlMap, StlSetIterator> & it)
//{
// return hasKey(*it);
//}
//template <typename TStlMap>
//inline typename Value<TStlMap>::Type &
//value(Iter<TStlMap, StlSetIterator> const & it)
//{
// return hasKey(*it);
//}
//////////////////////////////////////////////////////////////////////////////
template <typename TStlMap>
inline typename Key<TStlMap>::Type const &
key(Iter<TStlMap, StlSetIterator> & it)
{
return (*it._iter);
}
template <typename TStlMap>
inline typename Key<TStlMap>::Type const &
key(Iter<TStlMap, StlSetIterator> const & it)
{
return (*it._iter);
}
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc,typename TFind>
inline typename Iterator< std::set<TValue, TCompare, TAlloc> >::Type
find(std::set<TValue, TCompare, TAlloc> & me,
TFind const & _find)
{
typedef std::set<TValue, TCompare, TAlloc> TMap;
typedef typename Iterator< TMap >::Type TMapIterator;
TMapIterator _iter(me);
_iter._iter = me.find(_find);
if(!_iter){
_iter._iter = me.upper_bound(_find);
}
return _iter;
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TFind>
inline typename Iterator< std::map<TKey,TCargo, TCompare, TAlloc> >::Type
find(std::map<TKey,TCargo, TCompare, TAlloc> & me,
TFind const & _find)
{
typedef std::map<TKey,TCargo, TCompare, TAlloc> TMap;
typedef typename Iterator< TMap >::Type TMapIterator;
TMapIterator _iter(me);
_iter._iter = me.find(_find);
if(!_iter){
_iter._iter = me.upper_bound(_find);
}
return _iter;
}
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc, typename TMap2>
inline void
erase(std::set<TValue, TCompare, TAlloc> & me,
Iter<TMap2, StlSetIterator> const & it)
{
me.erase(it._iter);
}
template <typename TKey, typename TCargo ,typename TMap2>
inline void
erase(std::map<TKey,TCargo> & me,
Iter<TMap2, StlMapIterator> const & it)
{
me.erase(it._iter);
}
//////////////////////////////////////////////////////////////////////////////
template <typename TValue, typename TCompare, typename TAlloc, typename TToRemove>
inline void
erase(std::set<TValue, TCompare, TAlloc> & me,
TToRemove const & to_remove)
{
me.erase(to_remove);
}
template <typename TKey, typename TCargo, typename TCompare, typename TAlloc, typename TToRemove>
inline void
erase(std::map<TKey,TCargo, TCompare, TAlloc> & me,
TToRemove const & to_remove)
{
me.erase(to_remove);
}
}
#endif // #ifndef SEQAN_HEADER
|