Sha256: 6eac16c51be6e8a7fa09d9d554d1bb98729e4e77c2b3a0e61a48d706cc36bfe3
Contents?: true
Size: 501 Bytes
Versions: 6
Compression:
Stored size: 501 Bytes
Contents
#ifndef MARISA_GRIMOIRE_ALGORITHM_H_ #define MARISA_GRIMOIRE_ALGORITHM_H_ #include "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
6 entries across 6 versions & 1 rubygems