当前位置

网站首页> 程序设计 > 开源项目 > 编程语言 > 浏览文章

LambdaPP

作者:小梦 来源: 网络 时间: 2024-03-03 阅读:

开发者服务评测征文 十万现金悬赏大神

LambdaPP 可以让你在 C 程序中实现匿名函数编程。

示例代码:

// for an example the table consists of a string keyed (room) of occupants// stored in a linked list.hashtable_t *table;hashtable_foreach(table,    lambda void(list_t *list) {        list_foreach(list,            lambda void(const char *occupant) {                printf(">> %s\n", occupant);            }        );    });

相关阅读

热点阅读

网友最爱