Skip to content
Snippets Groups Projects
  • Gemma Guest's avatar
    6b34481f
    Reorganise files into subdirectories · 6b34481f
    Gemma Guest authored
    MainWindow and Batch subdirectories have been created for these GUI components.
    A Common subdirectory has been created for miscellaneous shared utilities.
    Unused files have been removed
    6b34481f
    History
    Reorganise files into subdirectories
    Gemma Guest authored
    MainWindow and Batch subdirectories have been created for these GUI components.
    A Common subdirectory has been created for miscellaneous shared utilities.
    Unused files have been removed
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ZipRange.h 1.01 KiB
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
//     NScD Oak Ridge National Laboratory, European Spallation Source
//     & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
#ifndef MANTID_ISISREFLECTOMETRY_ZIPRANGE_H
#define MANTID_ISISREFLECTOMETRY_ZIPRANGE_H
#include <boost/iterator/zip_iterator.hpp>
#include <boost/range/iterator_range.hpp>

namespace MantidQt {
namespace CustomInterfaces {

template <class... Containers>
auto zip_range(Containers &... containers)
    -> decltype(boost::make_iterator_range(
        boost::make_zip_iterator(boost::make_tuple(containers.begin()...)),
        boost::make_zip_iterator(boost::make_tuple(containers.end()...)))) {
  return {boost::make_zip_iterator(boost::make_tuple(containers.begin()...)),
          boost::make_zip_iterator(boost::make_tuple(containers.end()...))};
}
} // namespace CustomInterfaces
} // namespace MantidQt
#endif // MANTID_ISISREFLECTOMETRY_ZIPRANGE_H