/usr/include/seqan/sequence/segment_suffix.h is in seqan-dev 1.3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 | // ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2010, 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.
//
// ==========================================================================
// Author: Andreas Gogol-Doering <andreas.doering@mdc-berlin.de>
// ==========================================================================
// Implementation of the Suffix Segment specialization.
// ==========================================================================
#ifndef SEQAN_HEADER_SEGMENT_SUFFIX_H
#define SEQAN_HEADER_SEGMENT_SUFFIX_H
namespace SEQAN_NAMESPACE_MAIN
{
//////////////////////////////////////////////////////////////////////////////
// SuffixSegment
//////////////////////////////////////////////////////////////////////////////
/**
.Spec.SuffixSegment:
..cat:Segments
..summary:End part segment of a sequence.
..general:Class.Segment
..signature:Segment<THost, SuffixSegment>
..param.THost:Type of the whole sequence.
...text:Instances of $Segment<THost, SuffixSegment>$ are suffixes of $THost$ objects.
...remarks:Use @Metafunction.Host@ to get the host type for a given class.
..remarks.note:Since the appropriate segment type depends on the host sequence type,
it is recommended to use the metafunction @Metafunction.Suffix@ instead of explicitely
choose a specialization of @Class.Segment@.
..see:Spec.InfixSegment
..see:Metafunction.Suffix
..include:seqan/sequence.h
*/
struct SuffixSegment {};
template <typename THost_>
class Segment<THost_, SuffixSegment>
{
public:
typedef typename Host<Segment>::Type THost;
typename Pointer_<THost>::Type data_host;
typename Position<THost>::Type data_begin_position;
//____________________________________________________________________________
public:
/**
.Memfunc.SuffixSegment#Segment:
..class:Spec.SuffixSegment
..summary:Constructor
..signature:Segment<THost, SuffixSegment> ()
..signature:Segment<THost, SuffixSegment> (suffix)
..signature:Segment<THost, SuffixSegment> (host [, begin])
..param.suffix:Other suffix object. (copy constructor)
..param.host:The whole sequence.
..param.begin:Position in $host$ of the first item in segment. (optional)
...default:$0$
...type:Metafunction.Position.$Position<THost>::Type$
...type:Metafunction.Iterator.$Iterator<THost>::Type$
..remarks:
...text:A Segment object cannot work without a host. If the object is default constructed,
the host must be set by @Function.setHost@ before the segment can be used.
...text:If a segment object is constructed by the copy constructor, the
members of the new constructed object are set to the same values as the members in the
source object; the host object is not modified.
Note that this is a special case, since all other copy operations result in changes
of the host object.
...text:$begin$ must be a valid position/iterator in $host$.
If $begin$ is omitted, the suffix segment corresponding to
the whole sequence $host$ is constructed.
This is the same segment that is returned by @Function.goBegin@.
*/
Segment():
data_host(NULL),
data_begin_position(0)
{
SEQAN_CHECKPOINT
}
Segment(THost & _host):
data_host(& _host),
data_begin_position(0)
{
SEQAN_CHECKPOINT
}
Segment(typename Parameter_<THost>::Type _host, typename Position<THost>::Type _begin_index):
data_host(_toPointer(_host)),
data_begin_position(_begin_index)
{
SEQAN_CHECKPOINT
}
/*
Segment(typename Parameter_<THost>::Type _host, typename Iterator<THost, Rooted>::Type _begin):
data_host(_toPointer(_host)),
data_begin_position(position(_begin))
{
SEQAN_CHECKPOINT
}
*/
Segment(typename Parameter_<THost>::Type _host, typename Iterator<THost, Standard>::Type _begin):
data_host(_toPointer(_host)),
data_begin_position(position(_begin, _host))
{
SEQAN_CHECKPOINT
}
/*
Segment(Segment const & _other):
data_host(_other.data_host),
data_begin_position(_other.data_begin_position)
{
SEQAN_CHECKPOINT
}
*/
template <typename THost2, typename TSpec2>
Segment(Segment<THost2, TSpec2> const & _other):
data_host(_toPointer(host(_other))),
data_begin_position(beginPosition(_other))
{
SEQAN_CHECKPOINT
}
~ Segment()
{
SEQAN_CHECKPOINT
}
template <typename TSource>
inline Segment &
operator = (TSource const & source)
{
assign(*this, source);
return *this;
}
inline Segment &
operator = (Segment const & source)
{
assign(*this, source);
return *this;
}
//____________________________________________________________________________
public:
//____________________________________________________________________________
template <typename TPos>
inline typename Reference<Segment>::Type
operator [] (TPos pos)
{
SEQAN_CHECKPOINT
return value(*this, pos);
}
template <typename TPos>
inline typename Reference<Segment const>::Type
operator [] (TPos pos) const
{
SEQAN_CHECKPOINT
return value(*this, pos);
}
//____________________________________________________________________________
};
//////////////////////////////////////////////////////////////////////////////
template <typename THost_>
inline typename Parameter_<THost_>::Type
host(Segment<THost_, SuffixSegment> & me)
{
SEQAN_CHECKPOINT
return _toParameter<THost_>(me.data_host);
}
template <typename THost_>
inline typename Parameter_<THost_>::Type
host(Segment<THost_, SuffixSegment> const & me)
{
SEQAN_CHECKPOINT
return _toParameter<THost_>(me.data_host);
}
//____________________________________________________________________________
template <typename THost_>
inline void
setHost(Segment<THost_, SuffixSegment> & me, typename Parameter_<THost_>::Type _host)
{
SEQAN_CHECKPOINT
me.data_host = _toPointer(_host);
}
template <typename THost_>
inline void
setHost(Segment<THost_ const, SuffixSegment> & me, typename Parameter_<THost_>::Type _host)
{
SEQAN_CHECKPOINT
me.data_host = _toPointer(_host);
}
//____________________________________________________________________________
template <typename THost_>
inline typename Iterator<Segment<THost_, SuffixSegment>, Standard>::Type
begin(Segment<THost_, SuffixSegment> & me,
Standard)
{
SEQAN_CHECKPOINT
return begin(host(me), Standard()) + me.data_begin_position;
}
template <typename THost_>
inline typename Iterator<Segment<THost_, SuffixSegment> const, Standard>::Type
begin(Segment<THost_, SuffixSegment> const & me,
Standard)
{
SEQAN_CHECKPOINT
return begin(host(me), Standard()) + me.data_begin_position;
}
//____________________________________________________________________________
template <typename THost_>
inline typename Position<Segment<THost_, SuffixSegment> const>::Type
beginPosition(Segment<THost_, SuffixSegment> const & me)
{
SEQAN_CHECKPOINT
return me.data_begin_position;
}
template <typename THost_>
inline typename Position<Segment<THost_, SuffixSegment> >::Type
beginPosition(Segment<THost_, SuffixSegment> & me)
{
SEQAN_CHECKPOINT
return me.data_begin_position;
}
//____________________________________________________________________________
template <typename THost_, typename TIterator>
inline void
setBegin(Segment<THost_, SuffixSegment> & me, TIterator new_begin)
{
SEQAN_CHECKPOINT
me.data_begin_position = new_begin - begin(host(me));//, Standard());
}
template <typename THost_>
inline void
setBegin(typename Iterator<Segment<THost_, SuffixSegment>, Rooted>::Type new_begin)
{
SEQAN_CHECKPOINT
container(new_begin).data_begin_position = hostIterator(new_begin) - begin(host(container(new_begin)));//, Standard());
}
//____________________________________________________________________________
template <typename THost_, typename TPosition>
inline void
setBeginPosition(Segment<THost_, SuffixSegment> & me, TPosition new_begin)
{
SEQAN_CHECKPOINT
me.data_begin_position = new_begin;
}
//____________________________________________________________________________
template <typename THost_>
inline typename Iterator<Segment<THost_, SuffixSegment>, Standard>::Type
end(Segment<THost_, SuffixSegment> & me,
Standard)
{
SEQAN_CHECKPOINT
return end(host(me), Standard());
}
template <typename THost_>
inline typename Iterator<Segment<THost_, SuffixSegment> const, Standard>::Type
end(Segment<THost_, SuffixSegment> const & me,
Standard)
{
SEQAN_CHECKPOINT
return end(host(me), Standard());
}
//____________________________________________________________________________
template <typename THost_>
inline typename Position<Segment<THost_, SuffixSegment> >::Type
endPosition(Segment<THost_, SuffixSegment> & me)
{
SEQAN_CHECKPOINT
return length(host(me));
}
template <typename THost_>
inline typename Position<Segment<THost_, SuffixSegment> const>::Type
endPosition(Segment<THost_, SuffixSegment> const & me)
{
SEQAN_CHECKPOINT
return length(host(me));
}
//____________________________________________________________________________
template <typename TIterator, typename THost_>
inline void
setEnd(Segment<THost_, SuffixSegment> &, TIterator)
{
}
template <typename THost_, typename TSize>
inline void
_setLength(Segment<THost_, SuffixSegment> &, TSize)
{
}
//////////////////////////////////////////////////////////////////////////////
/**
.Metafunction.Suffix:
..summary:Suffix sequence type.
..signature:Suffix<T>::Type
..param.T:A sequence type.
...type:Class.String
..returns.param.Type:The suffix type.
..see:Spec.SuffixSegment
..see:Metafunction.Infix
..see:Metafunction.Prefix
..include:seqan/sequence.h
*/
struct PrefixSegment;
struct InfixSegment;
template <typename THost>
struct Suffix
{
typedef Segment<THost, SuffixSegment> Type;
};
template <typename THost>
struct Suffix< Segment<THost, InfixSegment> >
{
typedef Segment<THost, InfixSegment> Type;
};
template <typename THost>
struct Suffix< Segment<THost, SuffixSegment> >
{
typedef Segment<THost, SuffixSegment> Type;
};
template <typename THost>
struct Suffix< Segment<THost, PrefixSegment> >
{
typedef Segment<THost, InfixSegment> Type;
};
template <typename THost, typename TSpec>
struct Suffix< Segment<THost, TSpec> const >:
Suffix< Segment<THost, TSpec> > {};
template <typename THost>
struct Suffix<THost &>:
Suffix<THost> {};
//////////////////////////////////////////////////////////////////////////////
template <typename THost, typename TPosition>
inline void
set(Segment<THost, SuffixSegment> & me,
THost & host_,
TPosition begin_)
{
SEQAN_CHECKPOINT
setHost(me, host_);
setBeginPosition(me, begin_);
}
//____________________________________________________________________________
template <typename THost>
inline void
set(Segment<THost, SuffixSegment> & me,
THost & host_)
{
SEQAN_CHECKPOINT
setHost(me, host_);
setBegin(me, begin(host_, Standard()));
}
//____________________________________________________________________________
template <typename THost, typename TSpec>
inline void
set(Segment<THost, SuffixSegment> & me,
Segment<THost, TSpec> & source)
{
SEQAN_CHECKPOINT
setHost(me, host(source));
setBeginPosition(me, beginPosition(source));
}
template <typename THost, typename TSpec>
inline void
set(Segment<THost, SuffixSegment> & me,
Segment<THost, TSpec> const & source)
{
SEQAN_CHECKPOINT
setHost(me, host(source));
setBeginPosition(me, beginPosition(source));
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline bool
atBegin(Segment<THost, SuffixSegment> const & segment)
{
SEQAN_CHECKPOINT
return (beginPosition(segment) == 0);
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline bool
atEnd(Segment<THost, SuffixSegment> const & segment)
{
SEQAN_CHECKPOINT
return (beginPosition(segment) == length(host(segment)));
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline void
goBegin(Segment<THost, SuffixSegment> & segment,
THost &)
{
SEQAN_CHECKPOINT
goBegin(segment);
}
template <typename THost>
inline void
goBegin(Segment<THost, SuffixSegment> & segment)
{
setBegin(segment);
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline void
goEnd(Segment<THost, SuffixSegment> & segment,
THost &)
{
SEQAN_CHECKPOINT
goEnd(segment);
}
template <typename THost>
inline void
goEnd(Segment<THost, SuffixSegment> & segment)
{
setBegin(segment, length(host(segment))-1);
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline Segment<THost, SuffixSegment> &
operator ++(Segment<THost, SuffixSegment> & segment)
{
setBegin(segment, beginPosition(segment) + 1);
return segment;
}
//////////////////////////////////////////////////////////////////////////////
template <typename THost>
inline Segment<THost, SuffixSegment> &
operator --(Segment<THost, SuffixSegment> & segment)
{
setBegin(segment, beginPosition(segment) - 1);
return segment;
}
//////////////////////////////////////////////////////////////////////////////
/**
.Function.suffix:
..cat:Containers
..summary:Creates suffix object.
..signature:suffix(host, begin)
..remarks:Note that a suffix of a @Class.Segment@ object is an @Spec.SuffixSegment@ object having the same host type.
..param.host:The complete sequence.
...type:Class.String
...type:Adaption.char array
..param.begin:Position or iterator of the first element of the segment.
...type:Metafunction.Position
...type:Metafunction.Iterator
..returns:The suffix of $host that begins at $begin$.
...remarks:The type of the suffix is given by @Metafunction.Suffix@.
..remarks:Notational sugar.
..see:Spec.SuffixSegment
..see:Function.infix
..see.Metafunction.Suffix
..include:seqan/sequence.h
*/
template <typename T, typename TPosBegin>
inline typename Suffix<T>::Type
suffix(T & t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<T>::Type(t, pos_begin);
}
template <typename T, typename TPosBegin>
inline typename Suffix<T const>::Type
suffix(T const & t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<T const>::Type(t, pos_begin);
}
template <typename T, typename TPosBegin>
inline typename Suffix<T *>::Type
suffix(T * t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<T *>::Type (t, pos_begin);
}
//////////////////////////////////////////////////////////////////////////////
// A suffix of a prefix -> is an infix
template <typename T, typename TPosBegin>
inline typename Suffix<Segment<T, PrefixSegment> >::Type
suffix(Segment<T, PrefixSegment> & t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, PrefixSegment> >::Type (
host(t),
beginPosition(t) + pos_begin,
endPosition(t));
}
template <typename T, typename TPosBegin>
inline typename Suffix<Segment<T, PrefixSegment> const>::Type
suffix(Segment<T, PrefixSegment> const & t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, PrefixSegment> const>::Type (
host(t),
beginPosition(t) + pos_begin,
endPosition(t));
}
//////////////////////////////////////////////////////////////////////////////
// A suffix of a infix -> is an infix
template <typename T, typename TPosBegin>
inline typename Suffix<Segment<T, InfixSegment> >::Type
suffix(Segment<T, InfixSegment> & t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, InfixSegment> >::Type (
host(t),
beginPosition(t) + pos_begin,
endPosition(t));
}
template <typename T, typename TPosBegin>
inline typename Suffix<Segment<T, InfixSegment> const>::Type
suffix(Segment<T, InfixSegment> const & t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, InfixSegment> const>::Type (
host(t),
beginPosition(t) + pos_begin,
endPosition(t));
}
//////////////////////////////////////////////////////////////////////////////
// A suffix of a suffix -> is a suffix
template <typename T, typename TPosBegin>
inline typename Suffix<Segment<T, SuffixSegment> >::Type
suffix(Segment<T, SuffixSegment> & t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, SuffixSegment> >::Type (
host(t),
beginPosition(t) + pos_begin);
}
template <typename T, typename TPosBegin>
inline typename Suffix<Segment<T, SuffixSegment> const>::Type
suffix(Segment<T, SuffixSegment> const & t, TPosBegin pos_begin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, SuffixSegment> const>::Type (
host(t),
beginPosition(t) + pos_begin);
}
//////////////////////////////////////////////////////////////////////////////
// suffix() with iterators
template <typename T, typename TIterSpec>
inline typename Suffix<T>::Type
suffix(T & t,
Iter<Segment<T, PrefixSegment>, TIterSpec> const & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<T>::Type(t, iterBegin);
}
template <typename T, typename TIterSpec>
inline typename Suffix<T const>::Type
suffix(T const & t,
Iter<Segment<T, PrefixSegment> const, TIterSpec> const & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<T const>::Type(t, iterBegin);
}
template <typename T>
inline typename Suffix<T *>::Type
suffix(T * t,
T * & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<T *>::Type (t, iterBegin);
}
//////////////////////////////////////////////////////////////////////////////
// A suffix of a prefix -> is an infix
template <typename T, typename TIterSpec>
inline typename Suffix<Segment<T, PrefixSegment> >::Type
suffix(Segment<T, PrefixSegment> & t,
Iter<Segment<T, PrefixSegment>, TIterSpec> const & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, PrefixSegment> >::Type (
host(t),
iterBegin,
end(t));
}
template <typename T, typename TIterSpec>
inline typename Suffix<Segment<T, PrefixSegment> const>::Type
suffix(Segment<T, PrefixSegment> const & t,
Iter<Segment<T, PrefixSegment> const, TIterSpec> const & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, PrefixSegment> const>::Type (
host(t),
iterBegin,
end(t));
}
//////////////////////////////////////////////////////////////////////////////
// A suffix of a infix -> is an infix
template <typename T, typename TIterSpec>
inline typename Suffix<Segment<T, InfixSegment> >::Type
suffix(Segment<T, InfixSegment> & t,
Iter<Segment<T, InfixSegment>, TIterSpec> const & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, InfixSegment> >::Type (
host(t),
iterBegin,
end(t));
}
template <typename T, typename TIterSpec>
inline typename Suffix<Segment<T, InfixSegment> const>::Type
suffix(Segment<T, InfixSegment> const & t,
Iter<Segment<T, InfixSegment> const, TIterSpec> const & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, InfixSegment> const>::Type (
host(t),
iterBegin,
end(t));
}
//////////////////////////////////////////////////////////////////////////////
// A suffix of a suffix -> is a suffix
template <typename T, typename TIterSpec>
inline typename Suffix<Segment<T, SuffixSegment> >::Type
suffix(Segment<T, SuffixSegment> & t,
Iter<Segment<T, SuffixSegment>, TIterSpec> const & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, SuffixSegment> >::Type (
host(t),
iterBegin);
}
template <typename T, typename TIterSpec>
inline typename Suffix<Segment<T, SuffixSegment> const>::Type
suffix(Segment<T, SuffixSegment> const & t,
Iter<Segment<T, SuffixSegment> const, TIterSpec> const & iterBegin)
{
SEQAN_CHECKPOINT
return typename Suffix<Segment<T, SuffixSegment> const>::Type (
host(t),
iterBegin);
}
//////////////////////////////////////////////////////////////////////////////
} //namespace SEQAN_NAMESPACE_MAIN
#endif //#ifndef SEQAN_HEADER_...
|