Rosetta Utilities  2015.09
Classes | Namespaces
DereferenceIterator.hh File Reference

class for Iterating across a container of OPs if the function expects iterators of the dereferenced objects. example: if you have a loop that iterates on decoys via SilentFileData::begin()... SilentFileData::end() it uses the dereferenced objects: i.e., it->fill_pose() SilentFileData sfd; my_func( sfd.begin(), sfd.end() ); More...

#include <utility/vector1.hh>

Classes

class  utility::DereferenceIterator< Container >
 const_iterator class for SilentFileData container. More...
 

Namespaces

 utility
 unresizable vector whose size is known at compile time, which may be allocated on the stack, and which indexes from 1.
 

Detailed Description

class for Iterating across a container of OPs if the function expects iterators of the dereferenced objects. example: if you have a loop that iterates on decoys via SilentFileData::begin()... SilentFileData::end() it uses the dereferenced objects: i.e., it->fill_pose() SilentFileData sfd; my_func( sfd.begin(), sfd.end() );