Sha256: efeaebb1b2d3affc115ca0d29134aff3175511bc0b09c36c343711beb52310d2
Contents?: true
Size: 517 Bytes
Versions: 1
Compression:
Stored size: 517 Bytes
Contents
#ifndef MARISA_GRIMOIRE_ALGORITHM_H_ #define MARISA_GRIMOIRE_ALGORITHM_H_ #include "marisa/grimoire/algorithm/sort.h" namespace marisa { namespace grimoire { class Algorithm { public: Algorithm() {} template <typename Iterator> std::size_t sort(Iterator begin, Iterator end) const { return algorithm::sort(begin, end); } private: Algorithm(const Algorithm &); Algorithm &operator=(const Algorithm &); }; } // namespace grimoire } // namespace marisa #endif // MARISA_GRIMOIRE_ALGORITHM_H_
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
melisa-0.1.0 | ext/marisa/lib/marisa/grimoire/algorithm.h |