Fastest way to get nextSibling('foo')?

Fastest way to get nextSibling('foo')?

What is the fastest and easiest way to get the first matching sibling (in a given direction) with jQuery?

This works, but I'm not sure that it's the best approach.

   
  1. $('#foo').nextAll('.bar:first');
  2. $('#foo').nextUntil('.bar').next();