Example #1
0
Exclude&
Exclude::excludeBefore(const name::Component& to)
{
  return excludeRange(ExcludeComponent(true), to);
}
Example #2
0
Exclude&
Exclude::excludeRange(const name::Component& from, const name::Component& to)
{
  return excludeRange(ExcludeComponent(from), to);
}
Example #3
0
 /**
  * Exclude all components in the range ending at "to".
  * @param exclude The Exclude object to update.
  * @param to The last component in the exclude range.
  */
 static void
 excludeBefore(Exclude& exclude, const Name::Component& to)
 {
   excludeRange(exclude, Name::Component(), to);
 }