项目作者: ybcv

项目描述 :
macro lib for C
高级语言: C
项目地址: git://github.com/ybcv/ymacro.git
创建时间: 2019-08-25T15:26:47Z
项目社区:https://github.com/ybcv/ymacro

开源协议:BSD 3-Clause "New" or "Revised" License

下载


ymacro

map/reduce macro lib for C. works with lists up to 32 items in length.

  1. #define INCR(x) (x+1)
  2. #define MUL(a,b) a*b
  3. Y_REDUCE(MUL, Y_MAP(INCR, (1,2,3,4,5,6,7))))

expands to

  1. (1+1)*(2+1)*(3+1)*(4+1)*(5+1)*(6+1)*(7+1)