12#ifndef ARCANE_CORE_ALGORITHM_H
13#define ARCANE_CORE_ALGORITHM_H
30template <
class Container,
class Element>
inline
31typename Container::const_iterator
32container_find(
const Container& c,
const Element& elem)
34 typedef typename Container::const_iterator const_iterator;
35 const_iterator i = ARCANE_STD::find(c.begin(), c.end(), elem);
Fichier de configuration d'Arcane.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-