Page MenuHomec4science

test_arange_iterator.cc
No OneTemporary

File Metadata

Created
Thu, Jul 11, 09:03

test_arange_iterator.cc

/**
* @file test_arange_iterator.cc
*
* @author Nicolas Richart
*
* @date creation Fri Aug 11 2017
*
* @brief A Documented file.
*
* @section LICENSE
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "aka_iterators.hh"
/* -------------------------------------------------------------------------- */
#include <iostream>
/* -------------------------------------------------------------------------- */
using namespace akantu;
int main() {
for (auto i : arange(10))
std::cout << i << std::endl;
for (auto i : arange(-1, 10, 10))
std::cout << i << std::endl;
for (auto i : arange(-1, -10, -1))
std::cout << i << std::endl;
return 0;
}

Event Timeline