CP-Algorithms Library

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub cp-algorithms/cp-algorithms-aux

:heavy_check_mark: cp-algo/data_structures/treap/common.hpp

Required by

Verified with

Code

#ifndef CP_ALGO_DATA_STRUCTURES_TREAP_COMMON_HPP
#define CP_ALGO_DATA_STRUCTURES_TREAP_COMMON_HPP
#define _safe(t, op) (t ? t->op : typename std::remove_reference_t<decltype(t->op)>())
#endif // CP_ALGO_DATA_STRUCTURES_TREAP_COMMON_HPP
#line 1 "cp-algo/data_structures/treap/common.hpp"


#define _safe(t, op) (t ? t->op : typename std::remove_reference_t<decltype(t->op)>())

Back to top page