Listing 5

template<typename T>
concept IterableConcept {
  typedef Iterator;
  Iterator Begin();
  Iterator End();
}