kyopro library

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

View the Project on GitHub Chipppppppppp/kyopro

:warning: kpr/template/push_pop_macro.hpp

Required by

Code

#pragma once

#define pushf(...) emplace_front(__VA_ARGS__)
#define popf(...) pop_front(__VA_ARGS__)
#define pushb(...) emplace_back(__VA_ARGS__)
#define popb(...) pop_back(__VA_ARGS__)
#define push(...) emplace(__VA_ARGS__)
#line 2 "kpr/template/push_pop_macro.hpp"

#define pushf(...) emplace_front(__VA_ARGS__)
#define popf(...) pop_front(__VA_ARGS__)
#define pushb(...) emplace_back(__VA_ARGS__)
#define popb(...) pop_back(__VA_ARGS__)
#define push(...) emplace(__VA_ARGS__)
Back to top page