library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub kk2a/library

:warning: segment_tree/beats_utility.hpp

Depends on

Code

#ifndef KK2_SEGMENT_TREE_BEATS_UTILITY_HPP
#define KK2_SEGMENT_TREE_BEATS_UTILITY_HPP 1

#include "beats.hpp"

namespace kk2 {

namespace beats_utility {

// hogehoge

} // namespace beats_utility

} // namespace kk2

#endif // KK2_SEGMENT_TREE_BEATS_UTILITY_HPP
#line 1 "segment_tree/beats_utility.hpp"



#line 1 "segment_tree/beats.hpp"




namespace kk2 {

template <class S,
          S (*op)(S, S),
          S (*e)(),
          class F,
          S (*mapping)(F, S),
          F (*composition)(F, F),
          F (*id)(),
          bool (*fail)(S)>
struct SegTreeBeats {};

} // namespace kk2


#line 5 "segment_tree/beats_utility.hpp"

namespace kk2 {

namespace beats_utility {

// hogehoge

} // namespace beats_utility

} // namespace kk2
Back to top page