이 파일의 문서화 페이지로 가기
4#include "indep/macro/overload.hpp"
6#define BY_SIDE_FUNC_1(name) BY_SIDE_FUNC_2(it, name)
7#define BY_SIDE_FUNC_2(paramPtr, name) BY_SIDE_FUNC_3(it, name(*it), decltype(name(*it))())
8#define BY_SIDE_FUNC_3(paramPtr, expr, ret) \
9 { return paramPtr ? expr : ret; }
24#define BY_SIDE_FUNC(...) BY_OVERLOAD(BY_SIDE_FUNC, __VA_ARGS__)