├── LICENSE.txt ├── Makefile ├── Package.json ├── README.md ├── args.h ├── call.h ├── concat.h ├── count.h ├── foldl.h ├── foldr.h ├── intersperse.h ├── map-lists.h ├── map-pairs.h ├── map.h ├── paren.h ├── separators.h ├── stringify.h ├── templates ├── args.h ├── call.h ├── count.h ├── foldl.h ├── foldr.h ├── intersperse.h ├── map-lists.h ├── map-pairs.h ├── map.h ├── render.py └── zip.h ├── tests ├── call.in.c ├── call.out.c ├── foldl.in.c ├── foldl.out.c ├── foldr.in.c ├── foldr.out.c ├── intersperse.in.c ├── intersperse.out.c ├── map-lists.in.c ├── map-lists.out.c ├── map-pairs.in.c ├── map-pairs.out.c ├── map.in.c ├── map.out.c ├── realistic.in.c ├── realistic.out.c ├── run.bash ├── stringify.in.c ├── stringify.out.c ├── zip.in.c └── zip.out.c └── zip.h /LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published by 637 | the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | PYTHON ?= python 3 | 4 | # The maximum number of arguments that the macros can take: 5 | LIBPP_LIMIT ?= 128 6 | 7 | templates = $(wildcard templates/*.h) 8 | output = $(notdir $(templates)) 9 | 10 | 11 | .PHONY: all 12 | all: $(output) 13 | 14 | $(output): %.h: templates/%.h 15 | $(PYTHON) templates/render.py $(LIBPP_LIMIT) "$<" -o "$@" 16 | 17 | 18 | .PHONY: test 19 | test: all 20 | tests/run.bash 21 | 22 | 23 | .PHONY: clean 24 | clean: 25 | rm -f $(output) 26 | 27 | -------------------------------------------------------------------------------- /Package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [ 3 | ], 4 | "commands": { 5 | "build": "make", 6 | "test": "make test", 7 | "clean": "make clean" 8 | }, 9 | 10 | "_comment": "See: https://gitorious.org/mcinglis/puck" 11 | } 12 | 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | **Libpp** provides functional-programming macros for the C preprocessor, enabling a crude form of a metaprogramming. Libpp is simple, fast, and standards-conformant (C99 and up). 3 | 4 | ``` c 5 | #include // PP_FOLDR 6 | #include // PP_INTERSPERSE 7 | #include // PP_MAP 8 | #include // PP_SEP_SEMICOLON, PP_SEP_AND 9 | 10 | #define ASSERT( ... ) \ 11 | PP_MAP( assert, PP_SEP_SEMICOLON, __VA_ARGS__ ) 12 | ASSERT( X, Y, Z ); // assert( X ); assert( Y ); assert( Z ); 13 | 14 | #define ALL( ... ) \ 15 | ( PP_INTERSPERSE( PP_SEP_AND, __VA_ARGS__ ) ) 16 | ALL( X, Y, Z ) // ( ( X ) && ( Y ) && ( Z ) ) 17 | 18 | #define MULTIPLY( X, Y ) \ 19 | ( ( X ) * ( Y ) ) 20 | #define PRODUCT( ... ) \ 21 | ( PP_FOLDR( MULTIPLY, 1, __VA_ARGS__ ) ) 22 | PRODUCT( 87, 6.324, -732 ) // ( 87 * ( 6.324 * ( -732 * 1 ) ) ) 23 | ``` 24 | 25 | I've found Libpp to be useful for: 26 | 27 | - improving APIs and removing repetition in my code. 28 | - treating code as data, e.g. by defining a struct's invariants as a list of expressions, then using that list in multiple places. 29 | - defining variable-argument generic macros as demonstrated above. 30 | - doing simplistic compile-time computations (although in general I prefer to rely on intelligent compilation). 31 | 32 | I'm using Libpp to build a testing library with a really nice interface: 33 | 34 | ``` c 35 | return assertions( ASSERTION( 1 + 3 < 6 ), 36 | ASSERTION( "test"[2] == 'x' ), 37 | ASSERTION( func() != NULL ) ); 38 | // Thanks to PP_MAP, can become: 39 | return assertions( 1 + 3 < 6, 40 | "test"[2] == 'x', 41 | func() != NULL ); 42 | ``` 43 | 44 | See the [`realistic` test input](tests/realistic.in.c) and [output](tests/realistic.out.c) for more examples. 45 | 46 | Because the C preprocessor doesn't permit true recursion, the supposedly variable-argument macros (`PP_MAP`, `PP_FOLDR`, etc) are actually limited in how many arguments they can take: by default, 128. This limit, as well as notable preprocessing speed improvements, lead me to automatically generating parts of the header files. Running `make` will generate the header files from the corresponding templates in the [`templates/`](templates/) directory. If you want the macros to accept more or fewer arguments, just set the `LIBPP_LIMIT` environment variable and run `make clean all`. 47 | 48 | Note that `make` will execute the [`templates/render.py`](templates/render.py) script, which was written for Python 3.3; it assumes `python3` is on your PATH. 49 | 50 | I'm storing the rendered templates in version control to make the project more approachable. People can read the code as it's used without cloning the repository and running Make. Also, users can clone the repository and include the headers without requiring Python 3 to generate them. 51 | 52 | 53 | ## Releases 54 | 55 | I'll tag the releases according to [semantic versioning](http://semver.org/spec/v2.0.0.html). All the macros preceded by `// @public`, or between `// @public begin` and `// @public end`, are considered public: they'll only change between major versions. The other macros could change any time. The `PP_` namespace is reserved by Libpp, so new identifiers prefixed with `PP_` don't warrant a major version bump. 56 | 57 | Every version tag will be signed with [my GPG key](http://pool.sks-keyservers.net/pks/lookup?op=vindex&search=0xD020F814) (fingerprint: `0xD020F814`). 58 | 59 | 60 | ## Tests 61 | 62 | ``` 63 | $ make test 64 | tests/run.bash 65 | Pass: call 66 | Pass: foldl 67 | Pass: foldr 68 | Pass: intersperse 69 | ... 70 | ``` 71 | 72 | The tests work by `diff`ing the output of `gcc -E` with each `tests/*.in.c` against the corresponding `tests/*.out.c`. Those `out.c` files contain the preprocessor output provided by GCC 4.8. Thus, the tests may "fail" with other preprocessors, even though they output functionally-equivalent code. 73 | 74 | 75 | ## Collaboration 76 | 77 | Libpp is available at [Gitorious](https://gitorious.org/mcinglis/libpp), [Bitbucket](https://bitbucket.org/mcinglis/libpp), and [GitHub](https://github.com/mcinglis/libpp). 78 | 79 | Questions, discussion, bug reports and feature requests are welcome at [the GitHub issue tracker](https://github.com/mcinglis/libpp/issues), or via [emails](mailto:me@minglis.id.au). 80 | 81 | To contribute changes, you're welcome to [email me](mailto:me@minglis.id.au) patches as per `git format-patch`, or to send me a pull request on any of the aforementioned sites. You're also welcome to just send me a link to your remote repository, and I'll merge stuff from that as I want to. 82 | 83 | To accept notable contributions, I'll require you to assign your copyright to me. In your email/pull request and commit messages, please insert: "*I hereby irrevocably transfer to Malcolm Inglis (http://minglis.id.au) all copyrights, title, and interest, throughout the world, in these contributions to Libpp*". If you can, please sign the email or pull request, ensuring your GPG key is publicly available. 84 | 85 | 86 | ## Q&A 87 | 88 | ### How is this different from other C preprocessor libraries? 89 | 90 | Libpp is simple and pragmatic: it's not a quirky experiment. The macros have clean interfaces and understandable implementations. The macros evaluate as fast as possible, and the header files are as small as possible, so your build times won't suffer. Also, Libpp is actively maintained! 91 | 92 | ### Generating preprocessor code? Are you insane? 93 | 94 | Yes, I am. Still, generating the code is the best way out: it's maintainable, flexible, and fast. 95 | 96 | ### Why don't you provide a header that includes everything? 97 | 98 | I don't like unified headers, and I don't want to encourage their use. Unified headers: 99 | 100 | - relieve the library developer of their responsibility to provide loosely-coupled modules clearly separated by their purpose and abstraction, and of the user to use those modules as such; 101 | - make it harder to determine where a certain identifier came from; 102 | - make code slower to compile and link. 103 | - pollute the namespace, which can lead to all kinds of nasty bugs; 104 | - make it harder to maintain ABI compatibility; 105 | 106 | If you need to include six header files from Libpp, your source file is probably doing too much, and should be broken up. 107 | 108 | 109 | ## License 110 | 111 | **Copyright 2014 Malcolm Inglis ** 112 | 113 | Libpp is free software: you can redistribute it and/or modify it under the terms of the [GNU Affero General Public License](https://gnu.org/licenses/agpl.html) as published by the [Free Software Foundation](https://fsf.org), either version 3 of the License, or (at your option) any later version. 114 | 115 | Libpp is distributed in the hope that it will be useful, but **without any warranty**; without even the implied warranty of **merchantability** or **fitness for a particular purpose**. See the GNU Affero General Public License for more details. 116 | 117 | You should have received a copy of the GNU Affero General Public License along with Libpp. If not, see . 118 | 119 | [Contact me](mailto:me@minglis.id.au) for proprietary licensing options. 120 | 121 | ### Why AGPL? 122 | 123 | [I believe that nonfree software is harmful](http://minglis.id.au/blog/2014/04/09/free-software-free-society.html), and I don't want to contribute to its development at all. I believe that a free society must necessarily operate on free software. I want to encourage the development of free software, and discourage the development of nonfree software. 124 | 125 | The [GPL](https://gnu.org/licenses/gpl.html) was designed to ensure that the software stays free software; "to ensure that every user has freedom". The GPL's protections may have sufficed in 1990, but they don't in 2014. The GPL doesn't consider users of a web service to be users of the software implementing that server. Thankfully, the AGPL does. 126 | 127 | The AGPL ensures that if Libpp is used to implement a web service, then the entire source code of that web service must be free software. This way, I'm not contributing to nonfree software, whether it's executed locally or provided over a network. 128 | 129 | -------------------------------------------------------------------------------- /args.h: -------------------------------------------------------------------------------- 1 | 2 | // This file is the result of rendering `templates/args.h`. 3 | // You should make changes to this code by editing that template; not 4 | // this file. 5 | 6 | 7 | // Copyright 2014 Malcolm Inglis 8 | // 9 | // This file is part of Libpp. 10 | // 11 | // Libpp is free software: you can redistribute it and/or modify it under the 12 | // terms of the GNU Affero General Public License as published by the Free 13 | // Software Foundation, either version 3 of the License, or (at your option) 14 | // any later version. 15 | // 16 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 17 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 18 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 19 | // more details. 20 | // 21 | // You should have received a copy of the GNU Affero General Public License 22 | // along with Libpp. If not, see . 23 | 24 | 25 | #ifndef LIBPP_ARGS_H 26 | #define LIBPP_ARGS_H 27 | 28 | 29 | // Generated code: 30 | #define PP_ARGS_1( _1, ... ) _1 31 | #define PP_ARGS_2( _1,_2, ... ) _2 32 | #define PP_ARGS_3( _1,_2,_3, ... ) _3 33 | #define PP_ARGS_4( _1,_2,_3,_4, ... ) _4 34 | #define PP_ARGS_5( _1,_2,_3,_4,_5, ... ) _5 35 | #define PP_ARGS_6( _1,_2,_3,_4,_5,_6, ... ) _6 36 | #define PP_ARGS_7( _1,_2,_3,_4,_5,_6,_7, ... ) _7 37 | #define PP_ARGS_8( _1,_2,_3,_4,_5,_6,_7,_8, ... ) _8 38 | #define PP_ARGS_9( _1,_2,_3,_4,_5,_6,_7,_8,_9, ... ) _9 39 | #define PP_ARGS_10( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10, ... ) _10 40 | #define PP_ARGS_11( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11, ... ) _11 41 | #define PP_ARGS_12( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12, ... ) _12 42 | #define PP_ARGS_13( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13, ... ) _13 43 | #define PP_ARGS_14( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14, ... ) _14 44 | #define PP_ARGS_15( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15, ... ) _15 45 | #define PP_ARGS_16( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16, ... ) _16 46 | #define PP_ARGS_17( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17, ... ) _17 47 | #define PP_ARGS_18( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18, ... ) _18 48 | #define PP_ARGS_19( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19, ... ) _19 49 | #define PP_ARGS_20( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20, ... ) _20 50 | #define PP_ARGS_21( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21, ... ) _21 51 | #define PP_ARGS_22( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22, ... ) _22 52 | #define PP_ARGS_23( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23, ... ) _23 53 | #define PP_ARGS_24( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24, ... ) _24 54 | #define PP_ARGS_25( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25, ... ) _25 55 | #define PP_ARGS_26( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26, ... ) _26 56 | #define PP_ARGS_27( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27, ... ) _27 57 | #define PP_ARGS_28( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28, ... ) _28 58 | #define PP_ARGS_29( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29, ... ) _29 59 | #define PP_ARGS_30( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30, ... ) _30 60 | #define PP_ARGS_31( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31, ... ) _31 61 | #define PP_ARGS_32( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32, ... ) _32 62 | #define PP_ARGS_33( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33, ... ) _33 63 | #define PP_ARGS_34( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34, ... ) _34 64 | #define PP_ARGS_35( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35, ... ) _35 65 | #define PP_ARGS_36( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36, ... ) _36 66 | #define PP_ARGS_37( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37, ... ) _37 67 | #define PP_ARGS_38( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38, ... ) _38 68 | #define PP_ARGS_39( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39, ... ) _39 69 | #define PP_ARGS_40( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40, ... ) _40 70 | #define PP_ARGS_41( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41, ... ) _41 71 | #define PP_ARGS_42( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42, ... ) _42 72 | #define PP_ARGS_43( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43, ... ) _43 73 | #define PP_ARGS_44( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44, ... ) _44 74 | #define PP_ARGS_45( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45, ... ) _45 75 | #define PP_ARGS_46( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46, ... ) _46 76 | #define PP_ARGS_47( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47, ... ) _47 77 | #define PP_ARGS_48( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48, ... ) _48 78 | #define PP_ARGS_49( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49, ... ) _49 79 | #define PP_ARGS_50( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50, ... ) _50 80 | #define PP_ARGS_51( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51, ... ) _51 81 | #define PP_ARGS_52( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52, ... ) _52 82 | #define PP_ARGS_53( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53, ... ) _53 83 | #define PP_ARGS_54( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54, ... ) _54 84 | #define PP_ARGS_55( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55, ... ) _55 85 | #define PP_ARGS_56( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56, ... ) _56 86 | #define PP_ARGS_57( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57, ... ) _57 87 | #define PP_ARGS_58( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58, ... ) _58 88 | #define PP_ARGS_59( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59, ... ) _59 89 | #define PP_ARGS_60( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60, ... ) _60 90 | #define PP_ARGS_61( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61, ... ) _61 91 | #define PP_ARGS_62( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62, ... ) _62 92 | #define PP_ARGS_63( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63, ... ) _63 93 | #define PP_ARGS_64( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64, ... ) _64 94 | #define PP_ARGS_65( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65, ... ) _65 95 | #define PP_ARGS_66( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66, ... ) _66 96 | #define PP_ARGS_67( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67, ... ) _67 97 | #define PP_ARGS_68( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68, ... ) _68 98 | #define PP_ARGS_69( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69, ... ) _69 99 | #define PP_ARGS_70( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70, ... ) _70 100 | #define PP_ARGS_71( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71, ... ) _71 101 | #define PP_ARGS_72( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72, ... ) _72 102 | #define PP_ARGS_73( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73, ... ) _73 103 | #define PP_ARGS_74( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74, ... ) _74 104 | #define PP_ARGS_75( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75, ... ) _75 105 | #define PP_ARGS_76( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76, ... ) _76 106 | #define PP_ARGS_77( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77, ... ) _77 107 | #define PP_ARGS_78( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78, ... ) _78 108 | #define PP_ARGS_79( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79, ... ) _79 109 | #define PP_ARGS_80( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80, ... ) _80 110 | #define PP_ARGS_81( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81, ... ) _81 111 | #define PP_ARGS_82( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82, ... ) _82 112 | #define PP_ARGS_83( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83, ... ) _83 113 | #define PP_ARGS_84( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84, ... ) _84 114 | #define PP_ARGS_85( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85, ... ) _85 115 | #define PP_ARGS_86( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86, ... ) _86 116 | #define PP_ARGS_87( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87, ... ) _87 117 | #define PP_ARGS_88( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88, ... ) _88 118 | #define PP_ARGS_89( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89, ... ) _89 119 | #define PP_ARGS_90( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90, ... ) _90 120 | #define PP_ARGS_91( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91, ... ) _91 121 | #define PP_ARGS_92( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92, ... ) _92 122 | #define PP_ARGS_93( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93, ... ) _93 123 | #define PP_ARGS_94( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94, ... ) _94 124 | #define PP_ARGS_95( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95, ... ) _95 125 | #define PP_ARGS_96( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96, ... ) _96 126 | #define PP_ARGS_97( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97, ... ) _97 127 | #define PP_ARGS_98( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98, ... ) _98 128 | #define PP_ARGS_99( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99, ... ) _99 129 | #define PP_ARGS_100( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100, ... ) _100 130 | #define PP_ARGS_101( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101, ... ) _101 131 | #define PP_ARGS_102( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102, ... ) _102 132 | #define PP_ARGS_103( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103, ... ) _103 133 | #define PP_ARGS_104( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104, ... ) _104 134 | #define PP_ARGS_105( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105, ... ) _105 135 | #define PP_ARGS_106( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106, ... ) _106 136 | #define PP_ARGS_107( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107, ... ) _107 137 | #define PP_ARGS_108( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108, ... ) _108 138 | #define PP_ARGS_109( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109, ... ) _109 139 | #define PP_ARGS_110( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110, ... ) _110 140 | #define PP_ARGS_111( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111, ... ) _111 141 | #define PP_ARGS_112( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112, ... ) _112 142 | #define PP_ARGS_113( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113, ... ) _113 143 | #define PP_ARGS_114( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114, ... ) _114 144 | #define PP_ARGS_115( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115, ... ) _115 145 | #define PP_ARGS_116( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116, ... ) _116 146 | #define PP_ARGS_117( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117, ... ) _117 147 | #define PP_ARGS_118( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118, ... ) _118 148 | #define PP_ARGS_119( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119, ... ) _119 149 | #define PP_ARGS_120( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120, ... ) _120 150 | #define PP_ARGS_121( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121, ... ) _121 151 | #define PP_ARGS_122( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122, ... ) _122 152 | #define PP_ARGS_123( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123, ... ) _123 153 | #define PP_ARGS_124( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124, ... ) _124 154 | #define PP_ARGS_125( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124,_125, ... ) _125 155 | #define PP_ARGS_126( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124,_125,_126, ... ) _126 156 | #define PP_ARGS_127( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124,_125,_126,_127, ... ) _127 157 | #define PP_ARGS_128( _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124,_125,_126,_127,_128, ... ) _128 158 | 159 | 160 | 161 | #endif // ifndef LIBPP_ARGS_H 162 | 163 | 164 | -------------------------------------------------------------------------------- /concat.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_CONCAT_H 21 | #define LIBPP_CONCAT_H 22 | 23 | 24 | // @public 25 | // The `##` operator is specified to only replace a preprocessor expression 26 | // if that expression is exactly the name of an argument of the macro using 27 | // the `##` operator. This macro can be used to concatenate any two 28 | // preprocessor expressions, and not just arguments, by delaying the 29 | // concatenation to after a round of evaluation of the two expressions. 30 | #define PP_CONCAT( X, Y ) \ 31 | PP_CONCAT_( X, Y ) 32 | 33 | 34 | #define PP_CONCAT_( X, Y ) \ 35 | X ## Y 36 | 37 | 38 | #endif // ifndef LIBPP_CONCAT_H 39 | 40 | -------------------------------------------------------------------------------- /count.h: -------------------------------------------------------------------------------- 1 | 2 | // This file is the result of rendering `templates/count.h`. 3 | // You should make changes to this code by editing that template; not 4 | // this file. 5 | 6 | 7 | // Copyright 2014 Malcolm Inglis 8 | // 9 | // This file is part of Libpp. 10 | // 11 | // Libpp is free software: you can redistribute it and/or modify it under the 12 | // terms of the GNU Affero General Public License as published by the Free 13 | // Software Foundation, either version 3 of the License, or (at your option) 14 | // any later version. 15 | // 16 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 17 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 18 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 19 | // more details. 20 | // 21 | // You should have received a copy of the GNU Affero General Public License 22 | // along with Libpp. If not, see . 23 | 24 | 25 | #ifndef LIBPP_COUNT_H 26 | #define LIBPP_COUNT_H 27 | 28 | 29 | // The arguments of these macros have been generated. 30 | 31 | 32 | // @public 33 | // Evaluates to the number of arguments given. The result is undefined for 34 | // more than 128 arguments. 35 | #define PP_COUNT( ... ) \ 36 | PP_COUNT_( __VA_ARGS__, 128,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,84,83,82,81,80,79,78,77,76,75,74,73,72,71,70,69,68,67,66,65,64,63,62,61,60,59,58,57,56,55,54,53,52,51,50,49,48,47,46,45,44,43,42,41,40,39,38,37,36,35,34,33,32,31,30,29,28,27,26,25,24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1, vararg when given 1 ) 37 | 38 | 39 | // Evaluates to argument 128. 40 | #define PP_COUNT_( _128,_127,_126,_125,_124,_123,_122,_121,_120,_119,_118,_117,_116,_115,_114,_113,_112,_111,_110,_109,_108,_107,_106,_105,_104,_103,_102,_101,_100,_99,_98,_97,_96,_95,_94,_93,_92,_91,_90,_89,_88,_87,_86,_85,_84,_83,_82,_81,_80,_79,_78,_77,_76,_75,_74,_73,_72,_71,_70,_69,_68,_67,_66,_65,_64,_63,_62,_61,_60,_59,_58,_57,_56,_55,_54,_53,_52,_51,_50,_49,_48,_47,_46,_45,_44,_43,_42,_41,_40,_39,_38,_37,_36,_35,_34,_33,_32,_31,_30,_29,_28,_27,_26,_25,_24,_23,_22,_21,_20,_19,_18,_17,_16,_15,_14,_13,_12,_11,_10,_9,_8,_7,_6,_5,_4,_3,_2,_1, X, ... ) X 41 | 42 | 43 | #endif // ifndef LIBPP_COUNT_H 44 | 45 | 46 | -------------------------------------------------------------------------------- /foldl.h: -------------------------------------------------------------------------------- 1 | 2 | // This file is the result of rendering `templates/foldl.h`. 3 | // You should make changes to this code by editing that template; not 4 | // this file. 5 | 6 | 7 | // Copyright 2014 Malcolm Inglis 8 | // 9 | // This file is part of Libpp. 10 | // 11 | // Libpp is free software: you can redistribute it and/or modify it under the 12 | // terms of the GNU Affero General Public License as published by the Free 13 | // Software Foundation, either version 3 of the License, or (at your option) 14 | // any later version. 15 | // 16 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 17 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 18 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 19 | // more details. 20 | // 21 | // You should have received a copy of the GNU Affero General Public License 22 | // along with Libpp. If not, see . 23 | 24 | 25 | #ifndef LIBPP_FOLDL_H 26 | #define LIBPP_FOLDL_H 27 | 28 | 29 | #include "concat.h" // PP_CONCAT 30 | #include "count.h" // PP_COUNT 31 | 32 | 33 | // @public 34 | // 35 | // PP_FOLDL( m, acc, a ) 36 | // >>> m( acc, a ) 37 | // PP_FOLDL( m, acc, a, b ) 38 | // >>> m( m( acc, a ), b ) 39 | // PP_FOLDL( m, acc, a, b, c ) 40 | // >>> m( m( m( acc, a ), b ), c ) 41 | // 42 | // The result is undefined for more than 128 arguments. 43 | #define PP_FOLDL( M, ACC, ... ) \ 44 | PP_CONCAT( PP_FOLDL_, PP_COUNT( __VA_ARGS__ ) )( M, ACC, __VA_ARGS__ ) 45 | 46 | 47 | // Generated code: 48 | #define PP_FOLDL_1( M, ACC, _1 ) \ 49 | M(ACC,_1) 50 | #define PP_FOLDL_2( M, ACC, _1,_2 ) \ 51 | M(M(ACC,_1),_2) 52 | #define PP_FOLDL_3( M, ACC, _1,_2,_3 ) \ 53 | M(M(M(ACC,_1),_2),_3) 54 | #define PP_FOLDL_4( M, ACC, _1,_2,_3,_4 ) \ 55 | M(M(M(M(ACC,_1),_2),_3),_4) 56 | #define PP_FOLDL_5( M, ACC, _1,_2,_3,_4,_5 ) \ 57 | M(M(M(M(M(ACC,_1),_2),_3),_4),_5) 58 | #define PP_FOLDL_6( M, ACC, _1,_2,_3,_4,_5,_6 ) \ 59 | M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6) 60 | #define PP_FOLDL_7( M, ACC, _1,_2,_3,_4,_5,_6,_7 ) \ 61 | M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7) 62 | #define PP_FOLDL_8( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8 ) \ 63 | M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8) 64 | #define PP_FOLDL_9( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9 ) \ 65 | M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9) 66 | #define PP_FOLDL_10( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10 ) \ 67 | M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10) 68 | #define PP_FOLDL_11( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11 ) \ 69 | M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11) 70 | #define PP_FOLDL_12( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12 ) \ 71 | M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12) 72 | #define PP_FOLDL_13( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13 ) \ 73 | M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13) 74 | #define PP_FOLDL_14( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14 ) \ 75 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14) 76 | #define PP_FOLDL_15( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15 ) \ 77 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15) 78 | #define PP_FOLDL_16( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16 ) \ 79 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16) 80 | #define PP_FOLDL_17( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17 ) \ 81 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17) 82 | #define PP_FOLDL_18( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18 ) \ 83 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18) 84 | #define PP_FOLDL_19( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19 ) \ 85 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19) 86 | #define PP_FOLDL_20( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20 ) \ 87 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20) 88 | #define PP_FOLDL_21( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21 ) \ 89 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21) 90 | #define PP_FOLDL_22( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22 ) \ 91 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22) 92 | #define PP_FOLDL_23( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23 ) \ 93 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23) 94 | #define PP_FOLDL_24( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24 ) \ 95 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24) 96 | #define PP_FOLDL_25( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25 ) \ 97 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25) 98 | #define PP_FOLDL_26( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26 ) \ 99 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26) 100 | #define PP_FOLDL_27( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27 ) \ 101 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27) 102 | #define PP_FOLDL_28( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28 ) \ 103 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28) 104 | #define PP_FOLDL_29( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29 ) \ 105 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29) 106 | #define PP_FOLDL_30( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30 ) \ 107 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30) 108 | #define PP_FOLDL_31( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31 ) \ 109 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31) 110 | #define PP_FOLDL_32( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32 ) \ 111 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32) 112 | #define PP_FOLDL_33( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33 ) \ 113 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33) 114 | #define PP_FOLDL_34( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34 ) \ 115 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34) 116 | #define PP_FOLDL_35( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35 ) \ 117 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35) 118 | #define PP_FOLDL_36( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36 ) \ 119 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36) 120 | #define PP_FOLDL_37( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37 ) \ 121 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37) 122 | #define PP_FOLDL_38( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38 ) \ 123 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38) 124 | #define PP_FOLDL_39( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39 ) \ 125 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39) 126 | #define PP_FOLDL_40( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40 ) \ 127 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40) 128 | #define PP_FOLDL_41( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41 ) \ 129 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41) 130 | #define PP_FOLDL_42( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42 ) \ 131 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42) 132 | #define PP_FOLDL_43( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43 ) \ 133 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43) 134 | #define PP_FOLDL_44( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44 ) \ 135 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44) 136 | #define PP_FOLDL_45( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45 ) \ 137 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45) 138 | #define PP_FOLDL_46( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46 ) \ 139 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46) 140 | #define PP_FOLDL_47( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47 ) \ 141 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47) 142 | #define PP_FOLDL_48( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48 ) \ 143 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48) 144 | #define PP_FOLDL_49( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49 ) \ 145 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49) 146 | #define PP_FOLDL_50( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50 ) \ 147 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50) 148 | #define PP_FOLDL_51( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51 ) \ 149 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51) 150 | #define PP_FOLDL_52( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52 ) \ 151 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52) 152 | #define PP_FOLDL_53( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53 ) \ 153 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53) 154 | #define PP_FOLDL_54( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54 ) \ 155 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54) 156 | #define PP_FOLDL_55( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55 ) \ 157 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55) 158 | #define PP_FOLDL_56( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56 ) \ 159 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56) 160 | #define PP_FOLDL_57( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57 ) \ 161 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57) 162 | #define PP_FOLDL_58( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58 ) \ 163 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58) 164 | #define PP_FOLDL_59( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59 ) \ 165 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59) 166 | #define PP_FOLDL_60( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60 ) \ 167 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60) 168 | #define PP_FOLDL_61( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61 ) \ 169 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61) 170 | #define PP_FOLDL_62( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62 ) \ 171 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62) 172 | #define PP_FOLDL_63( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63 ) \ 173 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63) 174 | #define PP_FOLDL_64( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64 ) \ 175 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64) 176 | #define PP_FOLDL_65( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65 ) \ 177 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65) 178 | #define PP_FOLDL_66( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66 ) \ 179 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66) 180 | #define PP_FOLDL_67( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67 ) \ 181 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67) 182 | #define PP_FOLDL_68( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68 ) \ 183 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68) 184 | #define PP_FOLDL_69( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69 ) \ 185 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69) 186 | #define PP_FOLDL_70( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70 ) \ 187 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70) 188 | #define PP_FOLDL_71( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71 ) \ 189 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71) 190 | #define PP_FOLDL_72( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72 ) \ 191 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72) 192 | #define PP_FOLDL_73( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73 ) \ 193 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73) 194 | #define PP_FOLDL_74( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74 ) \ 195 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74) 196 | #define PP_FOLDL_75( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75 ) \ 197 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75) 198 | #define PP_FOLDL_76( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76 ) \ 199 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76) 200 | #define PP_FOLDL_77( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77 ) \ 201 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77) 202 | #define PP_FOLDL_78( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78 ) \ 203 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78) 204 | #define PP_FOLDL_79( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79 ) \ 205 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79) 206 | #define PP_FOLDL_80( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80 ) \ 207 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80) 208 | #define PP_FOLDL_81( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81 ) \ 209 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81) 210 | #define PP_FOLDL_82( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82 ) \ 211 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82) 212 | #define PP_FOLDL_83( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83 ) \ 213 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83) 214 | #define PP_FOLDL_84( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84 ) \ 215 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84) 216 | #define PP_FOLDL_85( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85 ) \ 217 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85) 218 | #define PP_FOLDL_86( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86 ) \ 219 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86) 220 | #define PP_FOLDL_87( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87 ) \ 221 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87) 222 | #define PP_FOLDL_88( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88 ) \ 223 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88) 224 | #define PP_FOLDL_89( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89 ) \ 225 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89) 226 | #define PP_FOLDL_90( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90 ) \ 227 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90) 228 | #define PP_FOLDL_91( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91 ) \ 229 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91) 230 | #define PP_FOLDL_92( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92 ) \ 231 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92) 232 | #define PP_FOLDL_93( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93 ) \ 233 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93) 234 | #define PP_FOLDL_94( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94 ) \ 235 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94) 236 | #define PP_FOLDL_95( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95 ) \ 237 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95) 238 | #define PP_FOLDL_96( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96 ) \ 239 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96) 240 | #define PP_FOLDL_97( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97 ) \ 241 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97) 242 | #define PP_FOLDL_98( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98 ) \ 243 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98) 244 | #define PP_FOLDL_99( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99 ) \ 245 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99) 246 | #define PP_FOLDL_100( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100 ) \ 247 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100) 248 | #define PP_FOLDL_101( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101 ) \ 249 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101) 250 | #define PP_FOLDL_102( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102 ) \ 251 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102) 252 | #define PP_FOLDL_103( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103 ) \ 253 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103) 254 | #define PP_FOLDL_104( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104 ) \ 255 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104) 256 | #define PP_FOLDL_105( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105 ) \ 257 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105) 258 | #define PP_FOLDL_106( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106 ) \ 259 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106) 260 | #define PP_FOLDL_107( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107 ) \ 261 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107) 262 | #define PP_FOLDL_108( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108 ) \ 263 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108) 264 | #define PP_FOLDL_109( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109 ) \ 265 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109) 266 | #define PP_FOLDL_110( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110 ) \ 267 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110) 268 | #define PP_FOLDL_111( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111 ) \ 269 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111) 270 | #define PP_FOLDL_112( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112 ) \ 271 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112) 272 | #define PP_FOLDL_113( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113 ) \ 273 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113) 274 | #define PP_FOLDL_114( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114 ) \ 275 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114) 276 | #define PP_FOLDL_115( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115 ) \ 277 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115) 278 | #define PP_FOLDL_116( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116 ) \ 279 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116) 280 | #define PP_FOLDL_117( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117 ) \ 281 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117) 282 | #define PP_FOLDL_118( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118 ) \ 283 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118) 284 | #define PP_FOLDL_119( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119 ) \ 285 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119) 286 | #define PP_FOLDL_120( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120 ) \ 287 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120) 288 | #define PP_FOLDL_121( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121 ) \ 289 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120),_121) 290 | #define PP_FOLDL_122( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122 ) \ 291 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120),_121),_122) 292 | #define PP_FOLDL_123( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123 ) \ 293 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120),_121),_122),_123) 294 | #define PP_FOLDL_124( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124 ) \ 295 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120),_121),_122),_123),_124) 296 | #define PP_FOLDL_125( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124,_125 ) \ 297 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120),_121),_122),_123),_124),_125) 298 | #define PP_FOLDL_126( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124,_125,_126 ) \ 299 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120),_121),_122),_123),_124),_125),_126) 300 | #define PP_FOLDL_127( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124,_125,_126,_127 ) \ 301 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120),_121),_122),_123),_124),_125),_126),_127) 302 | #define PP_FOLDL_128( M, ACC, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11,_12,_13,_14,_15,_16,_17,_18,_19,_20,_21,_22,_23,_24,_25,_26,_27,_28,_29,_30,_31,_32,_33,_34,_35,_36,_37,_38,_39,_40,_41,_42,_43,_44,_45,_46,_47,_48,_49,_50,_51,_52,_53,_54,_55,_56,_57,_58,_59,_60,_61,_62,_63,_64,_65,_66,_67,_68,_69,_70,_71,_72,_73,_74,_75,_76,_77,_78,_79,_80,_81,_82,_83,_84,_85,_86,_87,_88,_89,_90,_91,_92,_93,_94,_95,_96,_97,_98,_99,_100,_101,_102,_103,_104,_105,_106,_107,_108,_109,_110,_111,_112,_113,_114,_115,_116,_117,_118,_119,_120,_121,_122,_123,_124,_125,_126,_127,_128 ) \ 303 | M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(M(ACC,_1),_2),_3),_4),_5),_6),_7),_8),_9),_10),_11),_12),_13),_14),_15),_16),_17),_18),_19),_20),_21),_22),_23),_24),_25),_26),_27),_28),_29),_30),_31),_32),_33),_34),_35),_36),_37),_38),_39),_40),_41),_42),_43),_44),_45),_46),_47),_48),_49),_50),_51),_52),_53),_54),_55),_56),_57),_58),_59),_60),_61),_62),_63),_64),_65),_66),_67),_68),_69),_70),_71),_72),_73),_74),_75),_76),_77),_78),_79),_80),_81),_82),_83),_84),_85),_86),_87),_88),_89),_90),_91),_92),_93),_94),_95),_96),_97),_98),_99),_100),_101),_102),_103),_104),_105),_106),_107),_108),_109),_110),_111),_112),_113),_114),_115),_116),_117),_118),_119),_120),_121),_122),_123),_124),_125),_126),_127),_128) 304 | 305 | 306 | 307 | #endif // ifndef LIBPP_FOLDL_H 308 | 309 | 310 | -------------------------------------------------------------------------------- /paren.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_PAREN_H 21 | #define LIBPP_PAREN_H 22 | 23 | 24 | // @public 25 | // Wraps the given tokens in parentheses. This is useful for when separating 26 | // arithmetic expressions by arithmetic operators; it saves having to 27 | // parenthesize each expression manually. 28 | #define PP_PAREN( ... ) (__VA_ARGS__) 29 | 30 | 31 | #endif 32 | 33 | -------------------------------------------------------------------------------- /separators.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_SEPARATORS_H 21 | #define LIBPP_SEPARATORS_H 22 | 23 | 24 | // You can pass one of these following separator macros as the separator 25 | // argument to `PP_MAP`, `PP_MAP_LISTS` or `PP_INTERSPERSE` to separate each 26 | // resulting expression by a constant expression. 27 | // 28 | // PP_MAP( m, PP_SEP_NONE, a, b, c ) 29 | // >>> m( a ) m( b ) m( c ) 30 | // PP_MAP( m, PP_SEP_COMMA, a, b, c ) 31 | // >>> m( a ), m( b ), m( c ) 32 | // PP_MAP_LISTS( m, PP_SEP_TIMES, (a,b), (c) ) 33 | // >>> m( a, b ) * m( c ) 34 | // PP_MAP_LISTS( m, PP_SEP_SEMICOLON, (a,b), (c) ) 35 | // >>> m( a, b ); m( c ) 36 | // PP_INTERSPERSE( PP_SEP_AND, a, b, c ) 37 | // >>> ( a ) && ( b ) && ( c ) 38 | // 39 | // Be careful about how you use some of these separators. For example, the 40 | // comparison operators don't work like mathematical notation when they're 41 | // chained: `2 < 3 < 2 == true`. 42 | 43 | 44 | // @public begin 45 | #define PP_SEP_NONE( ... ) 46 | #define PP_SEP_COMMA( ... ) , 47 | #define PP_SEP_SEMICOLON( ... ) ; 48 | #define PP_SEP_PLUS( ... ) + 49 | #define PP_SEP_MINUS( ... ) - 50 | #define PP_SEP_TIMES( ... ) * 51 | #define PP_SEP_DIVIDE( ... ) / 52 | #define PP_SEP_MODULO( ... ) % 53 | #define PP_SEP_AND( ... ) && 54 | #define PP_SEP_OR( ... ) || 55 | #define PP_SEP_LT( ... ) < 56 | #define PP_SEP_LE( ... ) <= 57 | #define PP_SEP_EQ( ... ) == 58 | #define PP_SEP_NEQ( ... ) != 59 | #define PP_SEP_GE( ... ) >= 60 | #define PP_SEP_GT( ... ) > 61 | #define PP_SEP_BIT_AND( ... ) & 62 | #define PP_SEP_BIT_OR( ... ) | 63 | #define PP_SEP_BIT_XOR( ... ) ^ 64 | #define PP_SEP_BIT_LSHIFT( ... ) << 65 | #define PP_SEP_BIT_RSHIFT( ... ) >> 66 | #define PP_SEP_ASSIGN( ... ) = 67 | #define PP_SEP_PLUS_ASSIGN( ... ) += 68 | #define PP_SEP_MINUS_ASSIGN( ... ) -= 69 | #define PP_SEP_TIMES_ASSIGN( ... ) *= 70 | #define PP_SEP_DIVIDE_ASSIGN( ... ) /= 71 | #define PP_SEP_MODULO_ASSIGN( ... ) %= 72 | #define PP_SEP_BIT_AND_ASSIGN( ... ) &= 73 | #define PP_SEP_BIT_OR_ASSIGN( ... ) |= 74 | #define PP_SEP_BIT_XOR_ASSIGN( ... ) ^= 75 | #define PP_SEP_BIT_LSHIFT_ASSIGN( ... ) <<= 76 | #define PP_SEP_BIT_RSHIFT_ASSIGN( ... ) >>= 77 | #define PP_SEP_FIELD( ... ) . 78 | #define PP_SEP_DEREF_FIELD( ... ) -> 79 | #define PP_SEP_SPACE( ... ) " " 80 | #define PP_SEP_TAB( ... ) "\t" 81 | #define PP_SEP_LF( ... ) "\n" 82 | #define PP_SEP_CR( ... ) "\r" 83 | // @public end 84 | 85 | 86 | #endif // ifndef LIBPP_SEPARATORS_H 87 | 88 | -------------------------------------------------------------------------------- /stringify.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_STRINGIFY_H 21 | #define LIBPP_STRINGIFY_H 22 | 23 | 24 | // @public 25 | // Replaces the given tokens with a string literal of those tokens conjoined 26 | // by a comma and a space. 27 | // 28 | // PP_STRINGIFY( example ) 29 | // >>> "example" 30 | // PP_STRINGIFY( example of multiple words ) 31 | // >>> "example of multiple words" 32 | // PP_STRINGIFY( example, of, multiple, arguments ) 33 | // >>> "example, of, multiple, arguments" 34 | // PP_STRINGIFY( argument, spacing, isnt, preserved ) 35 | // >>> "argument, spacing, isnt, preserved" 36 | // 37 | #define PP_STRINGIFY( ... ) #__VA_ARGS__ 38 | 39 | 40 | // @public 41 | // Replaces the first evaluation of the given tokens with a string literal of 42 | // those evaluations conjoined by a comma and a space. 43 | // 44 | // PP_STRINGIFY( CHAR_BIT is not evaluated ) 45 | // >>> "CHAR_BIT" 46 | // PP_STRINGIFY_E( CHAR_BIT is evaluated ) 47 | // >>> "8" 48 | // 49 | #define PP_STRINGIFY_E( ... ) PP_STRINGIFY( __VA_ARGS__ ) 50 | 51 | 52 | #endif 53 | 54 | -------------------------------------------------------------------------------- /templates/args.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_ARGS_H 21 | #define LIBPP_ARGS_H 22 | 23 | 24 | // Generated code: 25 | {impls} 26 | 27 | 28 | #endif // ifndef LIBPP_ARGS_H 29 | 30 | 31 | ##### 32 | 33 | def context(limit): 34 | args_n = '#define PP_ARGS_{n}( {args}, ... ) {body}\n' 35 | 36 | impls = '' 37 | args = ['_1'] 38 | for i in range(1, limit+1): 39 | impls += args_n.format(n=i, 40 | args=','.join(args), 41 | body=args[i-1]) 42 | args.append('_{}'.format(i+1)) 43 | return {'impls': impls} 44 | 45 | -------------------------------------------------------------------------------- /templates/call.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_CALL_H 21 | #define LIBPP_CALL_H 22 | 23 | 24 | #include "concat.h" // PP_CONCAT 25 | #include "count.h" // PP_COUNT 26 | 27 | 28 | // @public 29 | // 30 | // PP_CALL( ( a, b ), sep, m ) 31 | // >>> m( a, b ) 32 | // PP_CALL( ( a ), sep, m, n ) 33 | // >>> m( a ) sep( m, n ) n( a ) 34 | // PP_CALL( ( a, b ), sep, m, n, o ) 35 | // >>> m( a, b ) sep( m, n ) n( a, b ) sep( n, o ) o( a, b ) 36 | // 37 | // The result is undefined for more than {limit} variable arguments. 38 | #define PP_CALL( A, SEP, ... ) \ 39 | PP_CONCAT( PP_CALL_, PP_COUNT( __VA_ARGS__ ) )( A, SEP, __VA_ARGS__ ) 40 | 41 | 42 | // Generated code: 43 | {impls} 44 | 45 | 46 | #endif // ifndef LIBPP_CALL_H 47 | 48 | 49 | ##### 50 | 51 | def context(limit): 52 | call_n = ('#define PP_CALL_{n}( A, S, {args} ) \\\n' 53 | ' {body}\n') 54 | 55 | impls = '' 56 | args = '_1' 57 | body = '_1 A' 58 | for i in range(1, limit+1): 59 | impls += call_n.format(n=i, args=args, body=body) 60 | next_arg = '_{}'.format(i+1) 61 | args += ',{}'.format(next_arg) 62 | body += ' S(_{cur},{next}) {next} A'.format(cur=i, next=next_arg) 63 | 64 | return {'impls': impls} 65 | 66 | -------------------------------------------------------------------------------- /templates/count.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_COUNT_H 21 | #define LIBPP_COUNT_H 22 | 23 | 24 | // The arguments of these macros have been generated. 25 | 26 | 27 | // @public 28 | // Evaluates to the number of arguments given. The result is undefined for 29 | // more than {limit} arguments. 30 | #define PP_COUNT( ... ) \ 31 | PP_COUNT_( __VA_ARGS__, {limit_to_1}, vararg when given 1 ) 32 | 33 | 34 | // Evaluates to argument {limit}. 35 | #define PP_COUNT_( {limit_to_1_args}, X, ... ) X 36 | 37 | 38 | #endif // ifndef LIBPP_COUNT_H 39 | 40 | 41 | ##### 42 | 43 | def context(limit): 44 | limit_to_1 = [str(i) for i in range(limit, 0, -1)] 45 | return {'limit_to_1': ','.join(limit_to_1), 46 | 'limit_to_1_args': ','.join('_{}'.format(n) for n in limit_to_1)} 47 | 48 | -------------------------------------------------------------------------------- /templates/foldl.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_FOLDL_H 21 | #define LIBPP_FOLDL_H 22 | 23 | 24 | #include "concat.h" // PP_CONCAT 25 | #include "count.h" // PP_COUNT 26 | 27 | 28 | // @public 29 | // 30 | // PP_FOLDL( m, acc, a ) 31 | // >>> m( acc, a ) 32 | // PP_FOLDL( m, acc, a, b ) 33 | // >>> m( m( acc, a ), b ) 34 | // PP_FOLDL( m, acc, a, b, c ) 35 | // >>> m( m( m( acc, a ), b ), c ) 36 | // 37 | // The result is undefined for more than {limit} arguments. 38 | #define PP_FOLDL( M, ACC, ... ) \ 39 | PP_CONCAT( PP_FOLDL_, PP_COUNT( __VA_ARGS__ ) )( M, ACC, __VA_ARGS__ ) 40 | 41 | 42 | // Generated code: 43 | {impls} 44 | 45 | 46 | #endif // ifndef LIBPP_FOLDL_H 47 | 48 | 49 | ##### 50 | 51 | def context(limit): 52 | foldl_n = ('#define PP_FOLDL_{n}( M, ACC, {args} ) \\\n' 53 | ' {body}\n') 54 | 55 | impls = '' 56 | args = '_1' 57 | body = 'M(ACC,_1)' 58 | for i in range(1, limit+1): 59 | impls += foldl_n.format(n=i, args=args, body=body) 60 | next_arg = '_{}'.format(str(i+1)) 61 | args += ',{}'.format(next_arg) 62 | body = 'M({},{})'.format(body, next_arg) 63 | 64 | return {'impls': impls} 65 | 66 | -------------------------------------------------------------------------------- /templates/foldr.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_FOLDR_H 21 | #define LIBPP_FOLDR_H 22 | 23 | 24 | #include "concat.h" // PP_CONCAT 25 | #include "count.h" // PP_COUNT 26 | 27 | 28 | // @public 29 | // 30 | // PP_FOLDR( m, acc, a ) 31 | // >>> m( a, acc ) 32 | // PP_FOLDR( m, acc, a, b ) 33 | // >>> m( a, m( b, acc ) ) 34 | // PP_FOLDR( m, acc, a, b, c ) 35 | // >>> m( a, m( b, m( c, acc ) ) ) 36 | // 37 | // The result is undefined for more than {limit} arguments. 38 | #define PP_FOLDR( M, ACC, ... ) \ 39 | PP_CONCAT( PP_FOLDR_, PP_COUNT( __VA_ARGS__ ) )( M, ACC, __VA_ARGS__ ) 40 | 41 | 42 | // Generated code: 43 | {impls} 44 | 45 | 46 | #endif // ifndef LIBPP_FOLDR_H 47 | 48 | 49 | ##### 50 | 51 | def context(limit): 52 | from functools import reduce 53 | 54 | foldr_n = ('#define PP_FOLDR_{n}( M, ACC, {args} ) \\\n' 55 | ' {body}\n') 56 | 57 | impls = '' 58 | args = ['_1'] 59 | for i in range(1, limit+1): 60 | impls += foldr_n.format(n = i, 61 | args = ','.join(args), 62 | body = reduce(lambda acc, x: 63 | 'M({},{})'.format( x, acc ), 64 | reversed(args), 65 | 'ACC')) 66 | args.append('_{}'.format(str(i+1))) 67 | 68 | return {'impls': impls} 69 | 70 | -------------------------------------------------------------------------------- /templates/intersperse.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_INTERSPERSE_H 21 | #define LIBPP_INTERSPERSE_H 22 | 23 | 24 | #include "concat.h" // PP_CONCAT 25 | #include "count.h" // PP_COUNT 26 | 27 | 28 | // @public 29 | // 30 | // PP_INTERSPERSE( sep, a ) 31 | // >>> a 32 | // PP_INTERSPERSE( sep, a, b ) 33 | // >>> a sep( a, b ) b 34 | // PP_INTERSPERSE( sep, a, b, c ) 35 | // >>> a sep( a, b ) b sep( b, c ) c 36 | // 37 | // Note that arguments are not parenthesized between calls to the separator 38 | // macro; if you are separating expressions by arithmetic operators, you 39 | // should probably use `PP_MAP` with `PP_PAREN` to parenthesize the 40 | // individual arguments. The result is undefined for more than {limit} 41 | // variable arguments. 42 | #define PP_INTERSPERSE( SEP, ... ) \ 43 | PP_CONCAT( PP_INTERSPERSE_, PP_COUNT( __VA_ARGS__ ) )( SEP, __VA_ARGS__ ) 44 | 45 | 46 | {impls} 47 | 48 | 49 | #endif // ifndef LIBPP_INTERSPERSE_H 50 | 51 | 52 | ##### 53 | 54 | def context(limit): 55 | intersperse_n = ('#define PP_INTERSPERSE_{n}( S, {args} ) \\\n' 56 | ' {body}\n') 57 | 58 | impls = '' 59 | args = '_1' 60 | body = '_1' 61 | for i in range(1, limit+1): 62 | impls += intersperse_n.format(n=i, args=args, body=body) 63 | next_arg = '_{}'.format(i+1) 64 | args += ',{}'.format(next_arg) 65 | body += ' S(_{cur},{next}) {next}'.format(cur=i, next=next_arg) 66 | 67 | return {'impls': impls} 68 | 69 | -------------------------------------------------------------------------------- /templates/map-lists.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_MAP_LISTS_H 21 | #define LIBPP_MAP_LISTS_H 22 | 23 | 24 | #include "concat.h" // PP_CONCAT 25 | #include "count.h" // PP_COUNT 26 | 27 | 28 | // @public 29 | // 30 | // PP_MAP_LISTS( m, sep, (a) ) 31 | // >>> m( a ) 32 | // PP_MAP_LISTS( m, sep, (a,b), (c) ) 33 | // >>> m( a, b ) sep( (a,b), (c) ) m( c ) 34 | // PP_MAP_LISTS( m, sep, (a,b,c), (d), (e,f) ) 35 | // >>> m( a, b, c ) sep( (a,b,c), (d) ) m( d ) sep( (d), (e,f) ) m( e, f ) 36 | // 37 | // The result is undefined for more than {limit} variable arguments. 38 | #define PP_MAP_LISTS( M, SEP, ... ) \ 39 | PP_CONCAT( PP_MAP_LISTS_, PP_COUNT( __VA_ARGS__ ) )( M, SEP, __VA_ARGS__ ) 40 | 41 | 42 | // Generated code: 43 | {impls} 44 | 45 | 46 | #endif // ifndef LIBPP_MAP_LISTS_H 47 | 48 | 49 | ##### 50 | 51 | def context(limit): 52 | map_lists_n = ('#define PP_MAP_LISTS_{n}( M, S, {args} ) \\\n' 53 | ' {body}\n') 54 | 55 | impls = '' 56 | args = '_1' 57 | body = 'M _1' 58 | for i in range(1, limit+1): 59 | impls += map_lists_n.format(n=i, args=args, body=body) 60 | next_arg = '_{}'.format(i+1) 61 | args += ',{}'.format(next_arg) 62 | body += ' S(_{cur},{next}) M {next}'.format(cur=i, next=next_arg) 63 | 64 | return {'impls': impls} 65 | 66 | -------------------------------------------------------------------------------- /templates/map-pairs.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_MAP_PAIRS_H 21 | #define LIBPP_MAP_PAIRS_H 22 | 23 | 24 | #include "concat.h" // PP_CONCAT 25 | #include "count.h" // PP_COUNT 26 | 27 | 28 | // @public 29 | // 30 | // PP_MAP_PAIRS( m, sep, a, b ) 31 | // >>> m( a, b ) 32 | // PP_MAP_PAIRS( m, sep, a, b, c ) 33 | // >>> m( a, b ) sep( a, b, c ) m( b, c ) 34 | // PP_MAP_PAIRS( m, sep, a, b, c, d ) 35 | // >>> m( a, b ) sep( a, b, c ) m( b, c ) sep( b, c, d ) m( c, d ) 36 | // 37 | // The result is undefined for more than {limit} variable arguments. 38 | #define PP_MAP_PAIRS( M, SEP, ... ) \ 39 | PP_CONCAT( PP_MAP_PAIRS_, PP_COUNT( __VA_ARGS__ ) )( M, SEP, __VA_ARGS__ ) 40 | 41 | 42 | // Generated code: 43 | {impls} 44 | 45 | 46 | #endif // ifndef LIBPP_MAP_PAIRS_H 47 | 48 | 49 | ##### 50 | 51 | def context(limit): 52 | map_pairs_n = ('#define PP_MAP_PAIRS_{n}( M, S, {args} ) \\\n' 53 | ' {body}\n') 54 | 55 | impls = '' 56 | args = '_1,_2' 57 | body = 'M(_1,_2)' 58 | for i in range(2, limit+1): 59 | impls += map_pairs_n.format(n=i, args=args, body=body) 60 | next_arg = '_{}'.format(i+1) 61 | args += ',{}'.format(next_arg) 62 | body += (' S(_{prev},_{cur},{next}) M(_{cur},{next})' 63 | .format(prev=i-1, cur=i, next=next_arg)) 64 | 65 | return {'impls': impls} 66 | 67 | -------------------------------------------------------------------------------- /templates/map.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_MAP_H 21 | #define LIBPP_MAP_H 22 | 23 | 24 | #include "concat.h" // PP_CONCAT 25 | #include "count.h" // PP_COUNT 26 | 27 | 28 | // @public 29 | // 30 | // PP_MAP( m, sep, a ) 31 | // >>> m( a ) 32 | // PP_MAP( m, sep, a, b ) 33 | // >>> m( a ) sep( a, b ) m( b ) 34 | // PP_MAP( m, sep, a, b, c ) 35 | // >>> m( a ) sep( a, b ) m( b ) sep( b, c ) m( c ) 36 | // 37 | // The result is undefined for more than {limit} variable arguments. 38 | #define PP_MAP( M, SEP, ... ) \ 39 | PP_CONCAT( PP_MAP_, PP_COUNT( __VA_ARGS__ ) )( M, SEP, __VA_ARGS__ ) 40 | 41 | 42 | // Generated code: 43 | {impls} 44 | 45 | 46 | #endif // ifndef LIBPP_MAP_H 47 | 48 | 49 | ##### 50 | 51 | def context(limit): 52 | map_n = ('#define PP_MAP_{n}( M, S, {args} ) \\\n' 53 | ' {body}\n') 54 | 55 | impls = '' 56 | args = '_1' 57 | body = 'M(_1)' 58 | for i in range(1, limit+1): 59 | impls += map_n.format(n=i, args=args, body=body) 60 | next_arg = '_{}'.format(i+1) 61 | args += ',{}'.format(next_arg) 62 | body += ' S(_{cur},{next}) M({next})'.format(cur=i, next=next_arg) 63 | 64 | return {'impls': impls} 65 | 66 | -------------------------------------------------------------------------------- /templates/render.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | from __future__ import print_function 4 | from argparse import ArgumentParser, Namespace 5 | 6 | 7 | TEMPLATE_SEPARATOR = '#####' 8 | OUTPUT_PREFIX = ''' 9 | // This file is the result of rendering `{filepath}`. 10 | // You should make changes to this code by editing that template; not 11 | // this file. 12 | 13 | ''' 14 | 15 | 16 | def main(argv): 17 | args = parse_args(argv[1:]) 18 | with open(args.output, 'w') as output: 19 | print(render(args.filepath, args.limit), file=output) 20 | return 0 21 | 22 | 23 | def parse_args(raw_args): 24 | p = ArgumentParser( 25 | description=('Renders the specified template file with the given ' 26 | 'arity limit. The template file should contain a line ' 27 | 'containing just `{}`, with the template text above ' 28 | 'that separator, and the context generation code ' 29 | 'below. The code should define a `context` function ' 30 | 'that generates a dict. The template text is then ' 31 | 'rendered by: ' 32 | '`text.format(limit=limit, **(context(limit))`') 33 | .format(TEMPLATE_SEPARATOR)) 34 | p.add_argument('limit', type=int) 35 | p.add_argument('filepath', type=str) 36 | p.add_argument('-o', '--output', default='/dev/stdout', 37 | help='The path to the file to write the rendered template to.') 38 | return p.parse_args(raw_args) 39 | 40 | 41 | def render(filepath, limit): 42 | text = read_file(filepath) 43 | template, code = text.split('\n' + TEMPLATE_SEPARATOR + '\n', 2) 44 | context_func = execute(code, filepath)['context'] 45 | context = context_func(limit) 46 | return (OUTPUT_PREFIX.format(filepath=filepath) 47 | + template.format(limit=limit, **context)) 48 | 49 | 50 | def execute(code, filepath): 51 | code_locals = {} 52 | code_obj = compile(code, filepath, 'exec') 53 | exec(code_obj, {}, code_locals) 54 | return code_locals 55 | 56 | 57 | def read_file(path): 58 | with open(path, 'r') as f: 59 | return f.read() 60 | 61 | 62 | if __name__ == '__main__': 63 | import sys 64 | sys.exit(main(sys.argv)) 65 | 66 | -------------------------------------------------------------------------------- /templates/zip.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2014 Malcolm Inglis 3 | // 4 | // This file is part of Libpp. 5 | // 6 | // Libpp is free software: you can redistribute it and/or modify it under the 7 | // terms of the GNU Affero General Public License as published by the Free 8 | // Software Foundation, either version 3 of the License, or (at your option) 9 | // any later version. 10 | // 11 | // Libpp is distributed in the hope that it will be useful, but WITHOUT ANY 12 | // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 | // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 14 | // more details. 15 | // 16 | // You should have received a copy of the GNU Affero General Public License 17 | // along with Libpp. If not, see . 18 | 19 | 20 | #ifndef LIBPP_ZIP_H 21 | #define LIBPP_ZIP_H 22 | 23 | 24 | #include "args.h" // PP_ARGS_* 25 | #include "concat.h" // PP_CONCAT 26 | #include "count.h" // PP_COUNT 27 | #include "map-lists.h" // PP_MAP_LISTS 28 | #include "separators.h" // PP_SEP_COMMA 29 | 30 | 31 | // @public 32 | // Let `n` be the number of lists given. 33 | // Let `m` be the length of the first given list, `XS`. 34 | // 35 | // This macro takes at least 2 and at most {limit} lists, each having a 36 | // length of at least 1 and at most {limit}, and each list being at least `m` 37 | // elements long, and evaluates to `n` lists of length `m`, where the `i`th 38 | // list consists of the `i`th elements in each given lists. 39 | // 40 | // A list is a series of comma-separated expressions surrounded by 41 | // parentheses, like `(1,2,3)`. 42 | // 43 | // PP_ZIP( (10), (20), (30) ) 44 | // >>> (10,20,30) 45 | // PP_ZIP( (10,11), (20,21), (30,31) ) 46 | // >>> (10,20,30), (11,21,31) 47 | // PP_ZIP( (10,11,12), (20,21,22,23,24,25), (30,31,32) ) 48 | // >>> (10,20,30), (11,21,31), (12,22,32) 49 | // 50 | #define PP_ZIP( XS, ... ) \ 51 | PP_CONCAT( PP_ZIP_, PP_COUNT XS ) \ 52 | ( PP_MAP_LISTS( PP_ZIP_BUFFER, PP_SEP_COMMA, XS, __VA_ARGS__ ) ) 53 | 54 | #define PP_ZIP_BUFFER( ... ) \ 55 | ( __VA_ARGS__, PP_ZIP_ARG_LIMIT_EXCEEDED ) 56 | 57 | // We append an element to each given list so that the `PP_ARGS` macros are 58 | // always called with their variable argument supplied, as the ISO C standard 59 | // requires. 60 | 61 | 62 | // Generated code: 63 | {impls} 64 | // End of generated code 65 | 66 | 67 | #endif // ifndef LIBPP_ZIP_H 68 | 69 | 70 | ##### 71 | 72 | def context(limit): 73 | zip_n = ('#define PP_ZIP_{n}( ... ) \\\n' 74 | ' {body}\n') 75 | nth_list = ('( PP_MAP_LISTS( PP_ARGS_{n}, PP_SEP_COMMA, __VA_ARGS__ ) )') 76 | # We implement the macros with `MAP_LISTS` so that we don't need to 77 | # generate limit*limit different macros to handle each possible 78 | # combination of the number of given lists and the size of the first list. 79 | # `MAP_LISTS` is already really fast, and I expect that the preprocessor 80 | # can evaluate it a few times quicker than it could read and parse a 81 | # multi-megabyte header file. 82 | 83 | impls = '' 84 | body = '' 85 | for i in range(1, limit+1): 86 | body += nth_list.format(n=i) 87 | impls += zip_n.format(n=i, body=body) 88 | body += ', ' 89 | return {'impls': impls} 90 | 91 | -------------------------------------------------------------------------------- /tests/call.in.c: -------------------------------------------------------------------------------- 1 | 2 | #include "call.h" 3 | 4 | PP_CALL( ( ), s, m ) 5 | PP_CALL( ( ), s, m, n ) 6 | PP_CALL( ( ), s, m, n, o ) 7 | 8 | PP_CALL( ( a ), s, m ) 9 | PP_CALL( ( a ), s, m, n ) 10 | PP_CALL( ( a ), s, m, n, o ) 11 | 12 | PP_CALL( ( a, b ), s, m ) 13 | PP_CALL( ( a, b ), s, m, n ) 14 | PP_CALL( ( a, b ), s, m, n, o ) 15 | 16 | PP_CALL( ( a, b, c ), s, m ) 17 | PP_CALL( ( a, b, c ), s, m, n ) 18 | PP_CALL( ( a, b, c ), s, m, n, o ) 19 | 20 | -------------------------------------------------------------------------------- /tests/call.out.c: -------------------------------------------------------------------------------- 1 | m ( ) 2 | m ( ) s(m,n) n ( ) 3 | m ( ) s(m,n) n ( ) s(n,o) o ( ) 4 | m ( a ) 5 | m ( a ) s(m,n) n ( a ) 6 | m ( a ) s(m,n) n ( a ) s(n,o) o ( a ) 7 | m ( a, b ) 8 | m ( a, b ) s(m,n) n ( a, b ) 9 | m ( a, b ) s(m,n) n ( a, b ) s(n,o) o ( a, b ) 10 | m ( a, b, c ) 11 | m ( a, b, c ) s(m,n) n ( a, b, c ) 12 | m ( a, b, c ) s(m,n) n ( a, b, c ) s(n,o) o ( a, b, c ) 13 | -------------------------------------------------------------------------------- /tests/foldl.in.c: -------------------------------------------------------------------------------- 1 | #include "foldl.h" 2 | 3 | PP_FOLDL( m, acc, a ) 4 | PP_FOLDL( m, acc, a, b ) 5 | PP_FOLDL( m, acc, a, b, c ) 6 | 7 | -------------------------------------------------------------------------------- /tests/foldl.out.c: -------------------------------------------------------------------------------- 1 | m(acc,a) 2 | m(m(acc,a),b) 3 | m(m(m(acc,a),b),c) 4 | -------------------------------------------------------------------------------- /tests/foldr.in.c: -------------------------------------------------------------------------------- 1 | #include "foldr.h" 2 | 3 | PP_FOLDR( m, acc, a ) 4 | PP_FOLDR( m, acc, a, b ) 5 | PP_FOLDR( m, acc, a, b, c ) 6 | 7 | -------------------------------------------------------------------------------- /tests/foldr.out.c: -------------------------------------------------------------------------------- 1 | m(a,acc) 2 | m(a,m(b,acc)) 3 | m(a,m(b,m(c,acc))) 4 | -------------------------------------------------------------------------------- /tests/intersperse.in.c: -------------------------------------------------------------------------------- 1 | #include "intersperse.h" 2 | 3 | PP_INTERSPERSE( s, a ) 4 | PP_INTERSPERSE( s, a, b ) 5 | PP_INTERSPERSE( s, a, b, c ) 6 | 7 | -------------------------------------------------------------------------------- /tests/intersperse.out.c: -------------------------------------------------------------------------------- 1 | a 2 | a s(a,b) b 3 | a s(a,b) b s(b,c) c 4 | -------------------------------------------------------------------------------- /tests/map-lists.in.c: -------------------------------------------------------------------------------- 1 | #include "map-lists.h" 2 | 3 | PP_MAP_LISTS( m, s, (a) ) 4 | PP_MAP_LISTS( m, s, (a), (b) ) 5 | PP_MAP_LISTS( m, s, (a), (b), (c) ) 6 | PP_MAP_LISTS( m, s, (a,b) ) 7 | PP_MAP_LISTS( m, s, (a,b), (c,d) ) 8 | PP_MAP_LISTS( m, s, (a,b), (c,d), (e,f) ) 9 | PP_MAP_LISTS( m, s, (a,b,c) ) 10 | PP_MAP_LISTS( m, s, (a,b,c), (d,e,f) ) 11 | PP_MAP_LISTS( m, s, (a,b,c), (d,e,f), (g,h,i) ) 12 | PP_MAP_LISTS( m, s, (a,b), (c,d), (e,f,g) ) 13 | PP_MAP_LISTS( m, s, (a,b,c), (d), (e,f) ) 14 | 15 | #define M( ... ) \ 16 | ( blah __VA_ARGS__ ) 17 | #define S( X, Y ) \ 18 | ( left: X, right: Y ) 19 | PP_MAP_LISTS( M, S, (a,b), (c,d), (e,f,g) ) 20 | 21 | -------------------------------------------------------------------------------- /tests/map-lists.out.c: -------------------------------------------------------------------------------- 1 | m (a) 2 | m (a) s((a),(b)) m (b) 3 | m (a) s((a),(b)) m (b) s((b),(c)) m (c) 4 | m (a,b) 5 | m (a,b) s((a,b),(c,d)) m (c,d) 6 | m (a,b) s((a,b),(c,d)) m (c,d) s((c,d),(e,f)) m (e,f) 7 | m (a,b,c) 8 | m (a,b,c) s((a,b,c),(d,e,f)) m (d,e,f) 9 | m (a,b,c) s((a,b,c),(d,e,f)) m (d,e,f) s((d,e,f),(g,h,i)) m (g,h,i) 10 | m (a,b) s((a,b),(c,d)) m (c,d) s((c,d),(e,f,g)) m (e,f,g) 11 | m (a,b,c) s((a,b,c),(d)) m (d) s((d),(e,f)) m (e,f) 12 | ( blah a,b ) ( left: (a,b), right: (c,d) ) ( blah c,d ) ( left: (c,d), right: (e,f,g) ) ( blah e,f,g ) 13 | -------------------------------------------------------------------------------- /tests/map-pairs.in.c: -------------------------------------------------------------------------------- 1 | 2 | #include "map-pairs.h" 3 | 4 | PP_MAP_PAIRS( m, s, a, b ) 5 | PP_MAP_PAIRS( m, s, a, b, c ) 6 | PP_MAP_PAIRS( m, s, a, b, c, d ) 7 | 8 | -------------------------------------------------------------------------------- /tests/map-pairs.out.c: -------------------------------------------------------------------------------- 1 | m(a,b) 2 | m(a,b) s(a,b,c) m(b,c) 3 | m(a,b) s(a,b,c) m(b,c) s(b,c,d) m(c,d) 4 | -------------------------------------------------------------------------------- /tests/map.in.c: -------------------------------------------------------------------------------- 1 | 2 | #include "map.h" 3 | 4 | PP_MAP( m, s, x ) 5 | PP_MAP( m, s, x, y ) 6 | PP_MAP( m, s, x, y, z ) 7 | 8 | -------------------------------------------------------------------------------- /tests/map.out.c: -------------------------------------------------------------------------------- 1 | m(x) 2 | m(x) s(x,y) m(y) 3 | m(x) s(x,y) m(y) s(y,z) m(z) 4 | -------------------------------------------------------------------------------- /tests/realistic.in.c: -------------------------------------------------------------------------------- 1 | 2 | #include "call.h" // PP_CALL 3 | #include "foldr.h" // PP_FOLDR 4 | #include "map-lists.h" // PP_MAP_LISTS 5 | #include "map-pairs.h" // PP_MAP_PAIRS 6 | #include "separators.h" // PP_SEP_AND, PP_SEP_NONE 7 | #include "zip.h" // PP_ZIP 8 | 9 | 10 | #define PLUS( X, Y ) \ 11 | ( ( X ) + ( Y ) ) 12 | 13 | #define SUM( ... ) \ 14 | PP_FOLDR( PLUS, 0, __VA_ARGS__ ) 15 | 16 | SUM( 6 ) 17 | SUM( 49, 1.56, 0x76, 'e', 748172 ) 18 | 19 | 20 | #define LESS_THAN( X, Y ) \ 21 | ( ( X ) < ( Y ) ) 22 | 23 | #define INCREASING( ... ) \ 24 | PP_MAP_PAIRS( LESS_THAN, PP_SEP_AND, __VA_ARGS__ ) 25 | 26 | INCREASING( 873, 9283 ) 27 | INCREASING( 14, 87, 1267, 9837.542, ( 123 * 471 ), 0746 ) 28 | 29 | 30 | #define NAMES foo, bar, baz, glop, duh 31 | #define VALUES 98, 47, 9.38, 756, 2376 32 | 33 | #define PAIRS PP_ZIP( ( NAMES ), ( VALUES ) ) 34 | 35 | #define DEFINE_FUNC( NAME, VALUE ) \ 36 | double calc_##NAME(double const x) { \ 37 | return x * VALUE; \ 38 | } 39 | PP_MAP_LISTS( DEFINE_FUNC, PP_SEP_NONE, PAIRS ) 40 | 41 | 42 | #define PTR_TYPE ( void *, ptr ) 43 | 44 | #define MAKE_FUNC_A( T, N ) \ 45 | T func_a_##N( T const x ) { return x; } 46 | 47 | #define MAKE_FUNC_B( T, N ) \ 48 | T func_b_##N( T const x ) { return x != NULL; } 49 | 50 | #define MAKE_FUNC_C( T, N ) \ 51 | T func_c_##N( T const x ) { return x == NULL; } 52 | 53 | PP_CALL( PTR_TYPE, PP_SEP_NONE, MAKE_FUNC_A, 54 | MAKE_FUNC_B, 55 | MAKE_FUNC_C ) 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /tests/realistic.out.c: -------------------------------------------------------------------------------- 1 | ( ( 6 ) + ( 0 ) ) 2 | ( ( 49 ) + ( ( ( 1.56 ) + ( ( ( 0x76 ) + ( ( ( 'e' ) + ( ( ( 748172 ) + ( 0 ) ) ) ) ) ) ) ) ) ) 3 | ( ( 873 ) < ( 9283 ) ) 4 | ( ( 14 ) < ( 87 ) ) && ( ( 87 ) < ( 1267 ) ) && ( ( 1267 ) < ( 9837.542 ) ) && ( ( 9837.542 ) < ( ( 123 * 471 ) ) ) && ( ( ( 123 * 471 ) ) < ( 0746 ) ) 5 | double calc_foo(double const x) { return x * 98; } double calc_bar(double const x) { return x * 47; } double calc_baz(double const x) { return x * 9.38; } double calc_glop(double const x) { return x * 756; } double calc_duh(double const x) { return x * 2376; } 6 | void * func_a_ptr( void * const x ) { return x; } void * func_b_ptr( void * const x ) { return x != NULL; } void * func_c_ptr( void * const x ) { return x == NULL; } 7 | -------------------------------------------------------------------------------- /tests/run.bash: -------------------------------------------------------------------------------- 1 | #!/bin/env bash 2 | 3 | 4 | set -o errexit 5 | set -o pipefail 6 | set -o nounset 7 | 8 | 9 | main() { 10 | local testdir="$(dirname $(readlink --canonicalize "$0"))" 11 | local nfails=0 12 | for f in "$testdir"/*.in.c; do 13 | local f_basename="$(basename $f)" 14 | local testname="${f_basename%.in.c}" 15 | if ! diff --ignore-blank-lines \ 16 | <(gcc -E -std=c11 -I"$testdir/.." -Wall -Wpedantic -P "$f") \ 17 | "${f%.in.c}".out.c; then 18 | echo "Fail: $testname" 19 | (( nfails += 1 )) 20 | else 21 | echo "Pass: $testname" 22 | fi 23 | done 24 | exit $nfails 25 | } 26 | 27 | 28 | main "$@" 29 | 30 | -------------------------------------------------------------------------------- /tests/stringify.in.c: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include "stringify.h" 4 | 5 | PP_STRINGIFY( example ) 6 | 7 | PP_STRINGIFY( example of multiple words ) 8 | 9 | PP_STRINGIFY( example, of, multiple, arguments ) 10 | 11 | PP_STRINGIFY( argument, spacing, isnt, preserved ) 12 | 13 | PP_STRINGIFY( CHAR_BIT is not evaluated ) 14 | 15 | PP_STRINGIFY_E( CHAR_BIT is evaluated ) 16 | 17 | 18 | -------------------------------------------------------------------------------- /tests/stringify.out.c: -------------------------------------------------------------------------------- 1 | "example" 2 | "example of multiple words" 3 | "example, of, multiple, arguments" 4 | "argument, spacing, isnt, preserved" 5 | "CHAR_BIT is not evaluated" 6 | "8 is evaluated" 7 | -------------------------------------------------------------------------------- /tests/zip.in.c: -------------------------------------------------------------------------------- 1 | 2 | #include "zip.h" // PP_ZIP 3 | 4 | // Given 2 lists: 5 | PP_ZIP( (a), (n) ) 6 | PP_ZIP( (a), (n,o) ) 7 | PP_ZIP( (a,b), (n,o) ) 8 | PP_ZIP( (a,b), (n,o,p,q) ) 9 | PP_ZIP( (a,b,c), (n,o,p) ) 10 | PP_ZIP( ((a,b),(c,d)), (n,(o,p)) ) 11 | 12 | // Given 3 lists: 13 | PP_ZIP( (a), (j), (r) ) 14 | PP_ZIP( (a), (j,k), (r) ) 15 | PP_ZIP( (a), (j,k), (r,s) ) 16 | PP_ZIP( (a,b), (j,k), (r,s) ) 17 | PP_ZIP( (a,b), (j,k,l), (r,s) ) 18 | PP_ZIP( (a,b), (j,k), (r,s,t) ) 19 | PP_ZIP( (a,b,c), (j,k,l), (r,s,t) ) 20 | PP_ZIP( (a,b,c), (j,k,l), (r,s,t,u) ) 21 | PP_ZIP( (a,b,c), (j,k,l,m), (r,s,t) ) 22 | PP_ZIP( (a,b,c), (j,k,l,m), (r,s,t, u ) ) 23 | 24 | // Given 4 lists: 25 | PP_ZIP( (a), (f), (m), (v) ) 26 | PP_ZIP( (a), (f,g), (m,n,o), (v) ) 27 | PP_ZIP( (a,b), (f,g), (m,n), (v,w) ) 28 | PP_ZIP( (a,b), (f,g), (m,n,o,p), (v,w) ) 29 | PP_ZIP( (a,b,c), (f,g,h), (m,n,o), (v,w,x) ) 30 | PP_ZIP( (a,b,c), (f,g,h), (m,n,o,p), (v,w,x) ) 31 | 32 | // Given 5 lists: 33 | PP_ZIP( (a), (e), (j), (q), (v) ) 34 | PP_ZIP( (a), (e,f), (j,k,l), (q,r), (v) ) 35 | PP_ZIP( (a,b), (e,f), (j,k), (q,r), (v,w) ) 36 | PP_ZIP( (a,b), (e,f,g), (j,k), (q,r,s,t), (v,w) ) 37 | PP_ZIP( (a,b,c), (e,f,g), (j,k,l), (q,r,s), (v,w,x) ) 38 | PP_ZIP( (a,b,c), (e,f,g,h), (j,k,l,m,n), (q,r,s), (v,w,x,y) ) 39 | 40 | // Given 6, 7 and 8 lists: 41 | PP_ZIP( (10,11), (20,21), (30,31), (40,41), (50,51), (60,61) ) 42 | PP_ZIP( (10,11), (20,21), (30,31), (40,41), (50,51), (60,61), (70,71) ) 43 | PP_ZIP( (10,11), (20,21), (30,31), (40,41), (50,51), (60,61), (70,71), (80,81) ) 44 | 45 | -------------------------------------------------------------------------------- /tests/zip.out.c: -------------------------------------------------------------------------------- 1 | ( a , n ) 2 | ( a , n ) 3 | ( a , n ), ( b , o ) 4 | ( a , n ), ( b , o ) 5 | ( a , n ), ( b , o ), ( c , p ) 6 | ( (a,b) , n ), ( (c,d) , (o,p) ) 7 | ( a , j , r ) 8 | ( a , j , r ) 9 | ( a , j , r ) 10 | ( a , j , r ), ( b , k , s ) 11 | ( a , j , r ), ( b , k , s ) 12 | ( a , j , r ), ( b , k , s ) 13 | ( a , j , r ), ( b , k , s ), ( c , l , t ) 14 | ( a , j , r ), ( b , k , s ), ( c , l , t ) 15 | ( a , j , r ), ( b , k , s ), ( c , l , t ) 16 | ( a , j , r ), ( b , k , s ), ( c , l , t ) 17 | ( a , f , m , v ) 18 | ( a , f , m , v ) 19 | ( a , f , m , v ), ( b , g , n , w ) 20 | ( a , f , m , v ), ( b , g , n , w ) 21 | ( a , f , m , v ), ( b , g , n , w ), ( c , h , o , x ) 22 | ( a , f , m , v ), ( b , g , n , w ), ( c , h , o , x ) 23 | ( a , e , j , q , v ) 24 | ( a , e , j , q , v ) 25 | ( a , e , j , q , v ), ( b , f , k , r , w ) 26 | ( a , e , j , q , v ), ( b , f , k , r , w ) 27 | ( a , e , j , q , v ), ( b , f , k , r , w ), ( c , g , l , s , x ) 28 | ( a , e , j , q , v ), ( b , f , k , r , w ), ( c , g , l , s , x ) 29 | ( 10 , 20 , 30 , 40 , 50 , 60 ), ( 11 , 21 , 31 , 41 , 51 , 61 ) 30 | ( 10 , 20 , 30 , 40 , 50 , 60 , 70 ), ( 11 , 21 , 31 , 41 , 51 , 61 , 71 ) 31 | ( 10 , 20 , 30 , 40 , 50 , 60 , 70 , 80 ), ( 11 , 21 , 31 , 41 , 51 , 61 , 71 , 81 ) 32 | --------------------------------------------------------------------------------