├── LICENSE ├── README ├── built-docs ├── active-arguments.html ├── alpha.gif ├── alternate.css ├── arbitrary-precision.html ├── argument-remap.html ├── arrays.html ├── background.gif ├── beta.gif ├── binary-literals.html ├── bypass-semantics.html ├── chaos │ ├── preprocessor.html │ └── preprocessor │ │ ├── algorithm.html │ │ ├── algorithm │ │ ├── append.html │ │ ├── auto.html │ │ ├── auto │ │ │ ├── bubblesort.html │ │ │ ├── combinatorial_repeat.html │ │ │ ├── filter.html │ │ │ ├── fold_left.html │ │ │ ├── fold_left_aux.html │ │ │ ├── fold_right.html │ │ │ ├── fold_right_aux.html │ │ │ ├── for_each.html │ │ │ ├── for_each_i.html │ │ │ ├── for_each_product.html │ │ │ ├── insertion_sort.html │ │ │ ├── merge_sort.html │ │ │ └── transform.html │ │ ├── bubblesort.html │ │ ├── cast.html │ │ ├── combinatorial_repeat.html │ │ ├── complexity │ │ │ ├── for_each_product-functional.gif │ │ │ └── for_each_product.gif │ │ ├── concat.html │ │ ├── drop.html │ │ ├── efficiency │ │ │ └── for_each_product.gif │ │ ├── elem.html │ │ ├── enumerate.html │ │ ├── filter.html │ │ ├── fold_left.html │ │ ├── fold_left_aux.html │ │ ├── fold_right.html │ │ ├── fold_right_aux.html │ │ ├── for_each.html │ │ ├── for_each_i.html │ │ ├── for_each_product.html │ │ ├── insert.html │ │ ├── insertion_sort.html │ │ ├── merge_sort.html │ │ ├── parametric.html │ │ ├── parametric │ │ │ ├── for_each.html │ │ │ ├── for_each_i.html │ │ │ └── for_each_product.html │ │ ├── pop_back.html │ │ ├── prepend.html │ │ ├── push_back.html │ │ ├── range.html │ │ ├── remove.html │ │ ├── replace.html │ │ ├── reverse.html │ │ ├── size.html │ │ ├── take.html │ │ ├── transform.html │ │ ├── x.html │ │ └── x │ │ │ ├── complexity │ │ │ ├── filter-best.gif │ │ │ ├── filter-worst.gif │ │ │ ├── fold_left.gif │ │ │ ├── fold_right.gif │ │ │ ├── for_each.gif │ │ │ ├── for_each_i.gif │ │ │ └── transform.gif │ │ │ ├── filter.html │ │ │ ├── fold_left.html │ │ │ ├── fold_left_aux.html │ │ │ ├── fold_right.html │ │ │ ├── fold_right_aux.html │ │ │ ├── for_each.html │ │ │ ├── for_each_i.html │ │ │ ├── for_each_product.html │ │ │ └── transform.html │ │ ├── arbitrary.html │ │ ├── arbitrary │ │ ├── add.html │ │ ├── bool.html │ │ ├── dec.html │ │ ├── demote.html │ │ ├── div.html │ │ ├── equal.html │ │ ├── greater.html │ │ ├── greater_equal.html │ │ ├── inc.html │ │ ├── less.html │ │ ├── less_equal.html │ │ ├── literal.html │ │ ├── mod.html │ │ ├── mul.html │ │ ├── neg.html │ │ ├── not_equal.html │ │ ├── promote.html │ │ ├── sign.html │ │ └── sub.html │ │ ├── arithmetic.html │ │ ├── arithmetic │ │ ├── add.html │ │ ├── dec.html │ │ ├── div.html │ │ ├── in_range.html │ │ ├── inc.html │ │ ├── machine.html │ │ ├── machine │ │ │ ├── add.html │ │ │ ├── div.html │ │ │ ├── mod.html │ │ │ ├── mul.html │ │ │ └── sub.html │ │ ├── mod.html │ │ ├── mul.html │ │ └── sub.html │ │ ├── array.html │ │ ├── array │ │ ├── core.html │ │ ├── elem.html │ │ ├── reverse.html │ │ ├── size.html │ │ ├── to_list.html │ │ ├── to_seq.html │ │ ├── to_string.html │ │ └── to_tuple.html │ │ ├── cat.html │ │ ├── comparison.html │ │ ├── comparison │ │ ├── equal.html │ │ ├── greater.html │ │ ├── greater_equal.html │ │ ├── less.html │ │ ├── less_equal.html │ │ ├── max.html │ │ ├── min.html │ │ └── not_equal.html │ │ ├── config.html │ │ ├── control.html │ │ ├── control │ │ ├── auto.html │ │ ├── auto │ │ │ ├── while.html │ │ │ └── while_aux.html │ │ ├── branch.html │ │ ├── if.html │ │ ├── iif.html │ │ ├── include_if.html │ │ ├── inline_unless.html │ │ ├── inline_when.html │ │ ├── null.html │ │ ├── placemarker_if.html │ │ ├── unless.html │ │ ├── variadic_if.html │ │ ├── variadic_iif.html │ │ ├── when.html │ │ ├── while.html │ │ ├── while_aux.html │ │ ├── x.html │ │ └── x │ │ │ ├── while.html │ │ │ └── while_aux.html │ │ ├── debug.html │ │ ├── debug │ │ ├── assert.html │ │ ├── failure.html │ │ └── line.html │ │ ├── detection.html │ │ ├── detection │ │ ├── compare.html │ │ ├── is_binary.html │ │ ├── is_empty.html │ │ ├── is_flag.html │ │ ├── is_nullary.html │ │ ├── is_numeric.html │ │ ├── is_one.html │ │ ├── is_ternary.html │ │ ├── is_unary.html │ │ └── is_variadic.html │ │ ├── extended.html │ │ ├── extended │ │ ├── auto_cat.html │ │ ├── partial_cat.html │ │ ├── reverse_cat.html │ │ └── variadic_cat.html │ │ ├── facilities.html │ │ ├── facilities │ │ ├── abbr.html │ │ ├── as_args.html │ │ ├── binary.html │ │ ├── bind.html │ │ ├── default.html │ │ ├── empty.html │ │ ├── encode.html │ │ ├── expand.html │ │ ├── expander.html │ │ ├── identity.html │ │ ├── indirect.html │ │ ├── intercept.html │ │ ├── optional.html │ │ ├── overload.html │ │ ├── push.html │ │ ├── split.html │ │ ├── type.html │ │ ├── unbox.html │ │ └── whitespace.html │ │ ├── generics.html │ │ ├── generics │ │ ├── core.html │ │ ├── is_elemental.html │ │ ├── is_type.html │ │ ├── strip.html │ │ └── typeof.html │ │ ├── iteration.html │ │ ├── iteration │ │ ├── file.html │ │ └── local.html │ │ ├── lambda.html │ │ ├── lambda │ │ ├── call.html │ │ ├── closure.html │ │ ├── curry.html │ │ ├── execute.html │ │ ├── invoke.html │ │ ├── ops.html │ │ ├── parse.html │ │ ├── planar.html │ │ ├── route.html │ │ └── trampoline.html │ │ ├── limits.html │ │ ├── list.html │ │ ├── list │ │ └── core.html │ │ ├── logical.html │ │ ├── logical │ │ ├── and.html │ │ ├── bitand.html │ │ ├── bitnand.html │ │ ├── bitnor.html │ │ ├── bitor.html │ │ ├── bitxnor.html │ │ ├── bitxor.html │ │ ├── bool.html │ │ ├── compl.html │ │ ├── nand.html │ │ ├── nor.html │ │ ├── not.html │ │ ├── or.html │ │ ├── xnor.html │ │ └── xor.html │ │ ├── punctuation.html │ │ ├── punctuation │ │ ├── comma.html │ │ ├── comma_if.html │ │ ├── hash.html │ │ └── paren.html │ │ ├── recursion.html │ │ ├── recursion │ │ ├── auto_rec.html │ │ ├── basic.html │ │ ├── block.html │ │ ├── buffer.html │ │ ├── context.html │ │ ├── delay.html │ │ ├── delve.html │ │ ├── dynamic.html │ │ ├── equalize.html │ │ ├── expr.html │ │ ├── higher_order.html │ │ ├── machine.html │ │ ├── phase.html │ │ ├── rail.html │ │ └── revive.html │ │ ├── repetition.html │ │ ├── repetition │ │ ├── auto.html │ │ ├── auto │ │ │ ├── delineate.html │ │ │ ├── delineate_from_to.html │ │ │ ├── delineate_from_to_trailing.html │ │ │ ├── delineate_shifted.html │ │ │ ├── delineate_shifted_trailing.html │ │ │ ├── delineate_trailing.html │ │ │ ├── enum.html │ │ │ ├── enum_from_to.html │ │ │ ├── enum_from_to_trailing.html │ │ │ ├── enum_shifted.html │ │ │ ├── enum_shifted_trailing.html │ │ │ ├── enum_trailing.html │ │ │ ├── for.html │ │ │ ├── for_aux.html │ │ │ ├── repeat.html │ │ │ ├── repeat_from_to.html │ │ │ └── repeat_shifted.html │ │ ├── delineate.html │ │ ├── delineate_from_to.html │ │ ├── delineate_from_to_trailing.html │ │ ├── delineate_params.html │ │ ├── delineate_shifted.html │ │ ├── delineate_shifted_params.html │ │ ├── delineate_shifted_trailing.html │ │ ├── delineate_shifted_trailing_params.html │ │ ├── delineate_trailing.html │ │ ├── delineate_trailing_params.html │ │ ├── enum.html │ │ ├── enum_from_to.html │ │ ├── enum_from_to_trailing.html │ │ ├── enum_params.html │ │ ├── enum_shifted.html │ │ ├── enum_shifted_params.html │ │ ├── enum_shifted_trailing.html │ │ ├── enum_shifted_trailing_params.html │ │ ├── enum_trailing.html │ │ ├── enum_trailing_params.html │ │ ├── for.html │ │ ├── for_aux.html │ │ ├── parametric.html │ │ ├── parametric │ │ │ ├── delineate.html │ │ │ ├── delineate_from_to.html │ │ │ ├── delineate_from_to_trailing.html │ │ │ ├── delineate_shifted.html │ │ │ ├── delineate_shifted_trailing.html │ │ │ ├── delineate_trailing.html │ │ │ ├── enum.html │ │ │ ├── enum_from_to.html │ │ │ ├── enum_from_to_trailing.html │ │ │ ├── enum_shifted.html │ │ │ ├── enum_shifted_trailing.html │ │ │ ├── enum_trailing.html │ │ │ ├── for.html │ │ │ ├── for_aux.html │ │ │ ├── repeat.html │ │ │ ├── repeat_from_to.html │ │ │ └── repeat_shifted.html │ │ ├── repeat.html │ │ ├── repeat_from_to.html │ │ ├── repeat_shifted.html │ │ ├── x.html │ │ └── x │ │ │ ├── complexity │ │ │ ├── delineate.gif │ │ │ ├── delineate_from_to.gif │ │ │ ├── delineate_shifted.gif │ │ │ └── for.gif │ │ │ ├── delineate.html │ │ │ ├── delineate_from_to.html │ │ │ ├── delineate_from_to_trailing.html │ │ │ ├── delineate_shifted.html │ │ │ ├── delineate_shifted_trailing.html │ │ │ ├── delineate_trailing.html │ │ │ ├── enum.html │ │ │ ├── enum_from_to.html │ │ │ ├── enum_from_to_trailing.html │ │ │ ├── enum_shifted.html │ │ │ ├── enum_shifted_trailing.html │ │ │ ├── enum_trailing.html │ │ │ ├── for.html │ │ │ ├── for_aux.html │ │ │ ├── repeat.html │ │ │ ├── repeat_from_to.html │ │ │ └── repeat_shifted.html │ │ ├── seq.html │ │ ├── seq │ │ ├── auto.html │ │ ├── auto │ │ │ ├── filter.html │ │ │ ├── fold_left.html │ │ │ ├── fold_left_aux.html │ │ │ ├── fold_right.html │ │ │ ├── fold_right_aux.html │ │ │ ├── for_each.html │ │ │ ├── for_each_i.html │ │ │ └── transform.html │ │ ├── binary_transform.html │ │ ├── complexity │ │ │ ├── duplex.gif │ │ │ ├── reverse_duplex.gif │ │ │ └── size_alt.gif │ │ ├── concat.html │ │ ├── core.html │ │ ├── drop.html │ │ ├── duplex.html │ │ ├── elem.html │ │ ├── enumerate.html │ │ ├── filter.html │ │ ├── fold_left.html │ │ ├── fold_left_aux.html │ │ ├── fold_right.html │ │ ├── fold_right_aux.html │ │ ├── for_each.html │ │ ├── for_each_i.html │ │ ├── infuse.html │ │ ├── insert.html │ │ ├── pop_back.html │ │ ├── range.html │ │ ├── remove.html │ │ ├── replace.html │ │ ├── reverse.html │ │ ├── size.html │ │ ├── take.html │ │ ├── to_array.html │ │ ├── to_list.html │ │ ├── to_string.html │ │ ├── to_tuple.html │ │ ├── transform.html │ │ ├── variadic.html │ │ ├── variadic │ │ │ ├── auto.html │ │ │ ├── auto │ │ │ │ ├── filter.html │ │ │ │ ├── fold_left.html │ │ │ │ ├── fold_left_aux.html │ │ │ │ ├── fold_right.html │ │ │ │ ├── fold_right_aux.html │ │ │ │ ├── for_each.html │ │ │ │ ├── for_each_i.html │ │ │ │ └── transform.html │ │ │ ├── core.html │ │ │ ├── filter.html │ │ │ ├── fold_left.html │ │ │ ├── fold_left_aux.html │ │ │ ├── fold_right.html │ │ │ ├── fold_right_aux.html │ │ │ ├── for_each.html │ │ │ ├── for_each_i.html │ │ │ └── transform.html │ │ └── zip.html │ │ ├── slot.html │ │ ├── slot │ │ ├── counter.html │ │ └── slot.html │ │ ├── string.html │ │ ├── string │ │ ├── charize.html │ │ ├── compare.html │ │ ├── compare_insensitive.html │ │ ├── core.html │ │ ├── to_lower.html │ │ ├── to_upper.html │ │ ├── ucharize.html │ │ └── wcharize.html │ │ ├── stringize.html │ │ ├── tuple.html │ │ ├── tuple │ │ ├── as_args.html │ │ ├── auto.html │ │ ├── auto │ │ │ ├── filter.html │ │ │ ├── fold_left.html │ │ │ ├── fold_left_aux.html │ │ │ ├── fold_right.html │ │ │ ├── fold_right_aux.html │ │ │ ├── for_each.html │ │ │ ├── for_each_i.html │ │ │ └── transform.html │ │ ├── batch.html │ │ ├── complexity │ │ │ ├── concat.gif │ │ │ ├── drop.gif │ │ │ ├── elem_alt.gif │ │ │ ├── filter.gif │ │ │ ├── fold_left.gif │ │ │ ├── fold_left_aux.gif │ │ │ ├── fold_right.gif │ │ │ ├── fold_right_aux.gif │ │ │ ├── for_each.gif │ │ │ ├── for_each_i.gif │ │ │ ├── insert.gif │ │ │ ├── pop_back.gif │ │ │ ├── range.gif │ │ │ ├── remove.gif │ │ │ ├── replace.gif │ │ │ ├── reverse_alt.gif │ │ │ ├── size.gif │ │ │ ├── take.gif │ │ │ ├── to_list_alt.gif │ │ │ ├── to_seq_alt.gif │ │ │ ├── to_string_alt.gif │ │ │ └── transform.gif │ │ ├── concat.html │ │ ├── core.html │ │ ├── drop.html │ │ ├── eat.html │ │ ├── efficiency │ │ │ ├── fold_left.gif │ │ │ ├── fold_left_aux.gif │ │ │ └── range.gif │ │ ├── elem.html │ │ ├── filter.html │ │ ├── fold_left.html │ │ ├── fold_left_aux.html │ │ ├── fold_right.html │ │ ├── fold_right_aux.html │ │ ├── for_each.html │ │ ├── for_each_i.html │ │ ├── insert.html │ │ ├── pop_back.html │ │ ├── range.html │ │ ├── rem.html │ │ ├── remove.html │ │ ├── replace.html │ │ ├── reverse.html │ │ ├── size.html │ │ ├── take.html │ │ ├── to_list.html │ │ ├── to_seq.html │ │ ├── to_string.html │ │ └── transform.html │ │ ├── ustringize.html │ │ └── wstringize.html ├── closures.html ├── continuation-machine.html ├── conventions.html ├── cpp-intro.html ├── deferral.html ├── doc-conventions.html ├── documents.html ├── equalization.html ├── evaluated-parameters.html ├── evaluated-slots.html ├── exponentials.html ├── file-iteration.html ├── generics.html ├── headers.html ├── higher-order.html ├── il.html ├── intermediates.html ├── introduction.html ├── lambda.html ├── license.html ├── lists.html ├── local-iteration.html ├── macro-expansion.html ├── named-externals.html ├── overview.html ├── parametrics.html ├── primary.html ├── rails.html ├── recursion.html ├── roman-numerals.html ├── saturation.html ├── second-tier.html ├── secondary.html ├── sequences.html ├── sequential-iteration.html ├── strings.html ├── style.css ├── true-optionals.html ├── tuples.html ├── tutorial.html └── unknown.html ├── chaos ├── preprocessor.h └── preprocessor │ ├── algorithm.h │ ├── algorithm │ ├── append.h │ ├── auto.h │ ├── auto │ │ ├── bubblesort.h │ │ ├── combinatorial_repeat.h │ │ ├── filter.h │ │ ├── fold_left.h │ │ ├── fold_left_aux.h │ │ ├── fold_right.h │ │ ├── fold_right_aux.h │ │ ├── for_each.h │ │ ├── for_each_i.h │ │ ├── for_each_product.h │ │ ├── insertion_sort.h │ │ ├── merge_sort.h │ │ └── transform.h │ ├── bubblesort.h │ ├── cast.h │ ├── combinatorial_repeat.h │ ├── concat.h │ ├── drop.h │ ├── elem.h │ ├── enumerate.h │ ├── filter.h │ ├── fold_left.h │ ├── fold_left_aux.h │ ├── fold_right.h │ ├── fold_right_aux.h │ ├── for_each.h │ ├── for_each_i.h │ ├── for_each_product.h │ ├── insert.h │ ├── insertion_sort.h │ ├── merge_sort.h │ ├── parametric.h │ ├── parametric │ │ ├── for_each.h │ │ ├── for_each_i.h │ │ └── for_each_product.h │ ├── pop_back.h │ ├── prepend.h │ ├── push_back.h │ ├── range.h │ ├── remove.h │ ├── replace.h │ ├── reverse.h │ ├── size.h │ ├── take.h │ ├── transform.h │ ├── x.h │ └── x │ │ ├── filter.h │ │ ├── fold_left.h │ │ ├── fold_left_aux.h │ │ ├── fold_right.h │ │ ├── fold_right_aux.h │ │ ├── for_each.h │ │ ├── for_each_i.h │ │ ├── for_each_product.h │ │ └── transform.h │ ├── arbitrary.h │ ├── arbitrary │ ├── add.h │ ├── bool.h │ ├── dec.h │ ├── demote.h │ ├── detail │ │ ├── divide.h │ │ ├── fix.h │ │ ├── is_shorter.h │ │ ├── lookup.h │ │ ├── merge.h │ │ ├── minus.h │ │ ├── plus.h │ │ ├── rel.h │ │ ├── scan.h │ │ ├── special.h │ │ ├── swap.h │ │ └── times.h │ ├── div.h │ ├── equal.h │ ├── greater.h │ ├── greater_equal.h │ ├── inc.h │ ├── less.h │ ├── less_equal.h │ ├── literal.h │ ├── mod.h │ ├── mul.h │ ├── neg.h │ ├── not_equal.h │ ├── promote.h │ ├── sign.h │ └── sub.h │ ├── arithmetic.h │ ├── arithmetic │ ├── add.h │ ├── dec.h │ ├── div.h │ ├── in_range.h │ ├── inc.h │ ├── machine.h │ ├── machine │ │ ├── add.h │ │ ├── div.h │ │ ├── mod.h │ │ ├── mul.h │ │ └── sub.h │ ├── mod.h │ ├── mul.h │ └── sub.h │ ├── array.h │ ├── array │ ├── core.h │ ├── elem.h │ ├── reverse.h │ ├── size.h │ ├── to_list.h │ ├── to_seq.h │ ├── to_string.h │ └── to_tuple.h │ ├── cat.h │ ├── comparison.h │ ├── comparison │ ├── equal.h │ ├── greater.h │ ├── greater_equal.h │ ├── less.h │ ├── less_equal.h │ ├── max.h │ ├── min.h │ └── not_equal.h │ ├── config.h │ ├── control.h │ ├── control │ ├── auto.h │ ├── auto │ │ ├── while.h │ │ └── while_aux.h │ ├── branch.h │ ├── detail │ │ └── null.h │ ├── expr_if.h │ ├── if.h │ ├── iif.h │ ├── include_if.h │ ├── inline_unless.h │ ├── inline_when.h │ ├── null.h │ ├── placemarker_if.h │ ├── unless.h │ ├── variadic_if.h │ ├── variadic_iif.h │ ├── when.h │ ├── while.h │ ├── while_aux.h │ ├── x.h │ └── x │ │ ├── while.h │ │ └── while_aux.h │ ├── debug.h │ ├── debug │ ├── assert.h │ ├── failure.h │ └── line.h │ ├── detection.h │ ├── detection │ ├── compare.h │ ├── is_binary.h │ ├── is_empty.h │ ├── is_flag.h │ ├── is_nullary.h │ ├── is_numeric.h │ ├── is_one.h │ ├── is_ternary.h │ ├── is_unary.h │ └── is_variadic.h │ ├── extended.h │ ├── extended │ ├── auto_cat.h │ ├── partial_cat.h │ ├── reverse_cat.h │ └── variadic_cat.h │ ├── facilities.h │ ├── facilities │ ├── abbr.h │ ├── as_args.h │ ├── binary.h │ ├── bind.h │ ├── default.h │ ├── empty.h │ ├── encode.h │ ├── expand.h │ ├── expander.h │ ├── identity.h │ ├── indirect.h │ ├── intercept.h │ ├── optional.h │ ├── overload.h │ ├── push.h │ ├── split.h │ ├── type.h │ ├── unbox.h │ └── whitespace.h │ ├── generics.h │ ├── generics │ ├── core.h │ ├── is_elemental.h │ ├── is_type.h │ ├── strip.h │ └── typeof.h │ ├── iteration.h │ ├── iteration │ ├── detail │ │ ├── i1.h │ │ ├── i2.h │ │ ├── i3.h │ │ ├── i4.h │ │ ├── i5.h │ │ ├── i6.h │ │ └── local.h │ ├── file.h │ └── local.h │ ├── lambda.h │ ├── lambda │ ├── call.h │ ├── closure.h │ ├── curry.h │ ├── detail │ │ ├── placeholders_0.h │ │ ├── placeholders_1.h │ │ └── with_placeholders.h │ ├── execute.h │ ├── invoke.h │ ├── ops.h │ ├── parse.h │ ├── planar.h │ ├── route.h │ └── trampoline.h │ ├── limits.h │ ├── list.h │ ├── list │ └── core.h │ ├── logical.h │ ├── logical │ ├── and.h │ ├── bitand.h │ ├── bitnand.h │ ├── bitnor.h │ ├── bitor.h │ ├── bitxnor.h │ ├── bitxor.h │ ├── bool.h │ ├── compl.h │ ├── nand.h │ ├── nor.h │ ├── not.h │ ├── or.h │ ├── xnor.h │ └── xor.h │ ├── punctuation.h │ ├── punctuation │ ├── comma.h │ ├── comma_if.h │ ├── hash.h │ └── paren.h │ ├── recursion.h │ ├── recursion │ ├── auto_rec.h │ ├── basic.h │ ├── block.h │ ├── buffer.h │ ├── context.h │ ├── delay.h │ ├── delve.h │ ├── dynamic.h │ ├── equalize.h │ ├── expr.h │ ├── higher_order.h │ ├── machine.h │ ├── phase.h │ ├── rail.h │ └── revive.h │ ├── repetition.h │ ├── repetition │ ├── auto.h │ ├── auto │ │ ├── delineate.h │ │ ├── delineate_from_to.h │ │ ├── delineate_from_to_trailing.h │ │ ├── delineate_shifted.h │ │ ├── delineate_shifted_trailing.h │ │ ├── delineate_trailing.h │ │ ├── enum.h │ │ ├── enum_from_to.h │ │ ├── enum_from_to_trailing.h │ │ ├── enum_shifted.h │ │ ├── enum_shifted_trailing.h │ │ ├── enum_trailing.h │ │ ├── for.h │ │ ├── for_aux.h │ │ ├── repeat.h │ │ ├── repeat_from_to.h │ │ └── repeat_shifted.h │ ├── delineate.h │ ├── delineate_from_to.h │ ├── delineate_from_to_trailing.h │ ├── delineate_params.h │ ├── delineate_shifted.h │ ├── delineate_shifted_params.h │ ├── delineate_shifted_trailing.h │ ├── delineate_shifted_trailing_params.h │ ├── delineate_trailing.h │ ├── delineate_trailing_params.h │ ├── enum.h │ ├── enum_from_to.h │ ├── enum_from_to_trailing.h │ ├── enum_params.h │ ├── enum_shifted.h │ ├── enum_shifted_params.h │ ├── enum_shifted_trailing.h │ ├── enum_shifted_trailing_params.h │ ├── enum_trailing.h │ ├── enum_trailing_params.h │ ├── for.h │ ├── for_aux.h │ ├── parametric.h │ ├── parametric │ │ ├── delineate.h │ │ ├── delineate_from_to.h │ │ ├── delineate_from_to_trailing.h │ │ ├── delineate_shifted.h │ │ ├── delineate_shifted_trailing.h │ │ ├── delineate_trailing.h │ │ ├── enum.h │ │ ├── enum_from_to.h │ │ ├── enum_from_to_trailing.h │ │ ├── enum_shifted.h │ │ ├── enum_shifted_trailing.h │ │ ├── enum_trailing.h │ │ ├── for.h │ │ ├── for_aux.h │ │ ├── repeat.h │ │ ├── repeat_from_to.h │ │ └── repeat_shifted.h │ ├── repeat.h │ ├── repeat_from_to.h │ ├── repeat_shifted.h │ ├── x.h │ └── x │ │ ├── delineate.h │ │ ├── delineate_from_to.h │ │ ├── delineate_from_to_trailing.h │ │ ├── delineate_shifted.h │ │ ├── delineate_shifted_trailing.h │ │ ├── delineate_trailing.h │ │ ├── enum.h │ │ ├── enum_from_to.h │ │ ├── enum_from_to_trailing.h │ │ ├── enum_shifted.h │ │ ├── enum_shifted_trailing.h │ │ ├── enum_trailing.h │ │ ├── for.h │ │ ├── for_aux.h │ │ ├── repeat.h │ │ ├── repeat_from_to.h │ │ └── repeat_shifted.h │ ├── sandbox │ ├── apply_scan.h │ ├── detain.h │ ├── equalization_assert.h │ ├── inhibit.h │ └── stream.h │ ├── seq.h │ ├── seq │ ├── auto.h │ ├── auto │ │ ├── filter.h │ │ ├── fold_left.h │ │ ├── fold_left_aux.h │ │ ├── fold_right.h │ │ ├── fold_right_aux.h │ │ ├── for_each.h │ │ ├── for_each_i.h │ │ └── transform.h │ ├── binary_transform.h │ ├── concat.h │ ├── core.h │ ├── detail │ │ └── close.h │ ├── drop.h │ ├── duplex.h │ ├── elem.h │ ├── enumerate.h │ ├── filter.h │ ├── fold_left.h │ ├── fold_left_aux.h │ ├── fold_right.h │ ├── fold_right_aux.h │ ├── for_each.h │ ├── for_each_i.h │ ├── infuse.h │ ├── insert.h │ ├── pop_back.h │ ├── range.h │ ├── remove.h │ ├── replace.h │ ├── reverse.h │ ├── size.h │ ├── take.h │ ├── to_array.h │ ├── to_list.h │ ├── to_string.h │ ├── to_tuple.h │ ├── transform.h │ ├── variadic.h │ ├── variadic │ │ ├── auto.h │ │ ├── auto │ │ │ ├── filter.h │ │ │ ├── fold_left.h │ │ │ ├── fold_left_aux.h │ │ │ ├── fold_right.h │ │ │ ├── fold_right_aux.h │ │ │ ├── for_each.h │ │ │ ├── for_each_i.h │ │ │ └── transform.h │ │ ├── core.h │ │ ├── filter.h │ │ ├── fold_left.h │ │ ├── fold_left_aux.h │ │ ├── fold_right.h │ │ ├── fold_right_aux.h │ │ ├── for_each.h │ │ ├── for_each_i.h │ │ └── transform.h │ └── zip.h │ ├── slot.h │ ├── slot │ ├── counter.h │ ├── detail │ │ ├── counter.h │ │ ├── s1.h │ │ ├── s2.h │ │ ├── s3.h │ │ ├── s4.h │ │ ├── s5.h │ │ └── shared.h │ └── slot.h │ ├── string.h │ ├── string │ ├── charize.h │ ├── compare.h │ ├── compare_insensitive.h │ ├── core.h │ ├── to_lower.h │ ├── to_upper.h │ ├── ucharize.h │ └── wcharize.h │ ├── stringize.h │ ├── tuple.h │ ├── tuple │ ├── as_args.h │ ├── auto.h │ ├── auto │ │ ├── filter.h │ │ ├── fold_left.h │ │ ├── fold_left_aux.h │ │ ├── fold_right.h │ │ ├── fold_right_aux.h │ │ ├── for_each.h │ │ ├── for_each_i.h │ │ └── transform.h │ ├── batch.h │ ├── concat.h │ ├── core.h │ ├── drop.h │ ├── eat.h │ ├── elem.h │ ├── filter.h │ ├── fold_left.h │ ├── fold_left_aux.h │ ├── fold_right.h │ ├── fold_right_aux.h │ ├── for_each.h │ ├── for_each_i.h │ ├── insert.h │ ├── pop_back.h │ ├── range.h │ ├── rem.h │ ├── remove.h │ ├── replace.h │ ├── reverse.h │ ├── size.h │ ├── take.h │ ├── to_list.h │ ├── to_seq.h │ ├── to_string.h │ └── transform.h │ ├── ustringize.h │ └── wstringize.h ├── documentation ├── active-arguments.xml ├── alpha.gif ├── arbitrary-precision.xml ├── argument-remap.xml ├── arrays.xml ├── beta.gif ├── binary-literals.xml ├── bypass-semantics.xml ├── chaos │ ├── preprocessor.xml │ └── preprocessor │ │ ├── algorithm.xml │ │ ├── algorithm │ │ ├── append.xml │ │ ├── auto.xml │ │ ├── auto │ │ │ ├── bubblesort.xml │ │ │ ├── combinatorial_repeat.xml │ │ │ ├── filter.xml │ │ │ ├── fold_left.xml │ │ │ ├── fold_left_aux.xml │ │ │ ├── fold_right.xml │ │ │ ├── fold_right_aux.xml │ │ │ ├── for_each.xml │ │ │ ├── for_each_i.xml │ │ │ ├── for_each_product.xml │ │ │ ├── insertion_sort.xml │ │ │ ├── merge_sort.xml │ │ │ └── transform.xml │ │ ├── bubblesort.xml │ │ ├── cast.xml │ │ ├── combinatorial_repeat.xml │ │ ├── complexity │ │ │ ├── for_each_product-functional.gif │ │ │ └── for_each_product.gif │ │ ├── concat.xml │ │ ├── drop.xml │ │ ├── efficiency │ │ │ └── for_each_product.gif │ │ ├── elem.xml │ │ ├── enumerate.xml │ │ ├── filter.xml │ │ ├── fold_left.xml │ │ ├── fold_left_aux.xml │ │ ├── fold_right.xml │ │ ├── fold_right_aux.xml │ │ ├── for_each.xml │ │ ├── for_each_i.xml │ │ ├── for_each_product.xml │ │ ├── insert.xml │ │ ├── insertion_sort.xml │ │ ├── merge_sort.xml │ │ ├── parametric.xml │ │ ├── parametric │ │ │ ├── for_each.xml │ │ │ ├── for_each_i.xml │ │ │ └── for_each_product.xml │ │ ├── pop_back.xml │ │ ├── prepend.xml │ │ ├── push_back.xml │ │ ├── range.xml │ │ ├── remove.xml │ │ ├── replace.xml │ │ ├── reverse.xml │ │ ├── size.xml │ │ ├── take.xml │ │ ├── transform.xml │ │ ├── x.xml │ │ └── x │ │ │ ├── complexity │ │ │ ├── filter-best.gif │ │ │ ├── filter-worst.gif │ │ │ ├── fold_left.gif │ │ │ ├── fold_right.gif │ │ │ ├── for_each.gif │ │ │ ├── for_each_i.gif │ │ │ └── transform.gif │ │ │ ├── filter.xml │ │ │ ├── fold_left.xml │ │ │ ├── fold_left_aux.xml │ │ │ ├── fold_right.xml │ │ │ ├── fold_right_aux.xml │ │ │ ├── for_each.xml │ │ │ ├── for_each_i.xml │ │ │ ├── for_each_product.xml │ │ │ └── transform.xml │ │ ├── arbitrary.xml │ │ ├── arbitrary │ │ ├── add.xml │ │ ├── bool.xml │ │ ├── dec.xml │ │ ├── demote.xml │ │ ├── div.xml │ │ ├── equal.xml │ │ ├── greater.xml │ │ ├── greater_equal.xml │ │ ├── inc.xml │ │ ├── less.xml │ │ ├── less_equal.xml │ │ ├── literal.xml │ │ ├── mod.xml │ │ ├── mul.xml │ │ ├── neg.xml │ │ ├── not_equal.xml │ │ ├── promote.xml │ │ ├── sign.xml │ │ └── sub.xml │ │ ├── arithmetic.xml │ │ ├── arithmetic │ │ ├── add.xml │ │ ├── dec.xml │ │ ├── div.xml │ │ ├── in_range.xml │ │ ├── inc.xml │ │ ├── machine.xml │ │ ├── machine │ │ │ ├── add.xml │ │ │ ├── div.xml │ │ │ ├── mod.xml │ │ │ ├── mul.xml │ │ │ └── sub.xml │ │ ├── mod.xml │ │ ├── mul.xml │ │ └── sub.xml │ │ ├── array.xml │ │ ├── array │ │ ├── core.xml │ │ ├── elem.xml │ │ ├── reverse.xml │ │ ├── size.xml │ │ ├── to_list.xml │ │ ├── to_seq.xml │ │ ├── to_string.xml │ │ └── to_tuple.xml │ │ ├── cat.xml │ │ ├── comparison.xml │ │ ├── comparison │ │ ├── equal.xml │ │ ├── greater.xml │ │ ├── greater_equal.xml │ │ ├── less.xml │ │ ├── less_equal.xml │ │ ├── max.xml │ │ ├── min.xml │ │ └── not_equal.xml │ │ ├── config.xml │ │ ├── control.xml │ │ ├── control │ │ ├── auto.xml │ │ ├── auto │ │ │ ├── while.xml │ │ │ └── while_aux.xml │ │ ├── branch.xml │ │ ├── if.xml │ │ ├── iif.xml │ │ ├── include_if.xml │ │ ├── inline_unless.xml │ │ ├── inline_when.xml │ │ ├── null.xml │ │ ├── placemarker_if.xml │ │ ├── unless.xml │ │ ├── variadic_if.xml │ │ ├── variadic_iif.xml │ │ ├── when.xml │ │ ├── while.xml │ │ ├── while_aux.xml │ │ ├── x.xml │ │ └── x │ │ │ ├── while.xml │ │ │ └── while_aux.xml │ │ ├── debug.xml │ │ ├── debug │ │ ├── assert.xml │ │ ├── failure.xml │ │ └── line.xml │ │ ├── detection.xml │ │ ├── detection │ │ ├── compare.xml │ │ ├── is_binary.xml │ │ ├── is_empty.xml │ │ ├── is_flag.xml │ │ ├── is_nullary.xml │ │ ├── is_numeric.xml │ │ ├── is_one.xml │ │ ├── is_ternary.xml │ │ ├── is_unary.xml │ │ └── is_variadic.xml │ │ ├── extended.xml │ │ ├── extended │ │ ├── auto_cat.xml │ │ ├── partial_cat.xml │ │ ├── reverse_cat.xml │ │ └── variadic_cat.xml │ │ ├── facilities.xml │ │ ├── facilities │ │ ├── abbr.xml │ │ ├── as_args.xml │ │ ├── binary.xml │ │ ├── bind.xml │ │ ├── default.xml │ │ ├── empty.xml │ │ ├── encode.xml │ │ ├── expand.xml │ │ ├── expander.xml │ │ ├── identity.xml │ │ ├── indirect.xml │ │ ├── intercept.xml │ │ ├── optional.xml │ │ ├── overload.xml │ │ ├── push.xml │ │ ├── split.xml │ │ ├── type.xml │ │ ├── unbox.xml │ │ └── whitespace.xml │ │ ├── generics.xml │ │ ├── generics │ │ ├── core.xml │ │ ├── is_elemental.xml │ │ ├── is_type.xml │ │ ├── strip.xml │ │ └── typeof.xml │ │ ├── iteration.xml │ │ ├── iteration │ │ ├── file.xml │ │ └── local.xml │ │ ├── lambda.xml │ │ ├── lambda │ │ ├── call.xml │ │ ├── closure.xml │ │ ├── curry.xml │ │ ├── execute.xml │ │ ├── invoke.xml │ │ ├── ops.xml │ │ ├── parse.xml │ │ ├── planar.xml │ │ ├── route.xml │ │ └── trampoline.xml │ │ ├── limits.xml │ │ ├── list.xml │ │ ├── list │ │ └── core.xml │ │ ├── logical.xml │ │ ├── logical │ │ ├── and.xml │ │ ├── bitand.xml │ │ ├── bitnand.xml │ │ ├── bitnor.xml │ │ ├── bitor.xml │ │ ├── bitxnor.xml │ │ ├── bitxor.xml │ │ ├── bool.xml │ │ ├── compl.xml │ │ ├── nand.xml │ │ ├── nor.xml │ │ ├── not.xml │ │ ├── or.xml │ │ ├── xnor.xml │ │ └── xor.xml │ │ ├── punctuation.xml │ │ ├── punctuation │ │ ├── comma.xml │ │ ├── comma_if.xml │ │ ├── hash.xml │ │ └── paren.xml │ │ ├── recursion.xml │ │ ├── recursion │ │ ├── auto_rec.xml │ │ ├── basic.xml │ │ ├── block.xml │ │ ├── buffer.xml │ │ ├── context.xml │ │ ├── delay.xml │ │ ├── delve.xml │ │ ├── dynamic.xml │ │ ├── equalize.xml │ │ ├── expr.xml │ │ ├── higher_order.xml │ │ ├── machine.xml │ │ ├── phase.xml │ │ ├── rail.xml │ │ └── revive.xml │ │ ├── repetition.xml │ │ ├── repetition │ │ ├── auto.xml │ │ ├── auto │ │ │ ├── delineate.xml │ │ │ ├── delineate_from_to.xml │ │ │ ├── delineate_from_to_trailing.xml │ │ │ ├── delineate_shifted.xml │ │ │ ├── delineate_shifted_trailing.xml │ │ │ ├── delineate_trailing.xml │ │ │ ├── enum.xml │ │ │ ├── enum_from_to.xml │ │ │ ├── enum_from_to_trailing.xml │ │ │ ├── enum_shifted.xml │ │ │ ├── enum_shifted_trailing.xml │ │ │ ├── enum_trailing.xml │ │ │ ├── for.xml │ │ │ ├── for_aux.xml │ │ │ ├── repeat.xml │ │ │ ├── repeat_from_to.xml │ │ │ └── repeat_shifted.xml │ │ ├── delineate.xml │ │ ├── delineate_from_to.xml │ │ ├── delineate_from_to_trailing.xml │ │ ├── delineate_params.xml │ │ ├── delineate_shifted.xml │ │ ├── delineate_shifted_params.xml │ │ ├── delineate_shifted_trailing.xml │ │ ├── delineate_shifted_trailing_params.xml │ │ ├── delineate_trailing.xml │ │ ├── delineate_trailing_params.xml │ │ ├── enum.xml │ │ ├── enum_from_to.xml │ │ ├── enum_from_to_trailing.xml │ │ ├── enum_params.xml │ │ ├── enum_shifted.xml │ │ ├── enum_shifted_params.xml │ │ ├── enum_shifted_trailing.xml │ │ ├── enum_shifted_trailing_params.xml │ │ ├── enum_trailing.xml │ │ ├── enum_trailing_params.xml │ │ ├── for.xml │ │ ├── for_aux.xml │ │ ├── parametric.xml │ │ ├── parametric │ │ │ ├── delineate.xml │ │ │ ├── delineate_from_to.xml │ │ │ ├── delineate_from_to_trailing.xml │ │ │ ├── delineate_shifted.xml │ │ │ ├── delineate_shifted_trailing.xml │ │ │ ├── delineate_trailing.xml │ │ │ ├── enum.xml │ │ │ ├── enum_from_to.xml │ │ │ ├── enum_from_to_trailing.xml │ │ │ ├── enum_shifted.xml │ │ │ ├── enum_shifted_trailing.xml │ │ │ ├── enum_trailing.xml │ │ │ ├── for.xml │ │ │ ├── for_aux.xml │ │ │ ├── repeat.xml │ │ │ ├── repeat_from_to.xml │ │ │ └── repeat_shifted.xml │ │ ├── repeat.xml │ │ ├── repeat_from_to.xml │ │ ├── repeat_shifted.xml │ │ ├── x.xml │ │ └── x │ │ │ ├── complexity │ │ │ ├── delineate.gif │ │ │ ├── delineate_from_to.gif │ │ │ ├── delineate_shifted.gif │ │ │ └── for.gif │ │ │ ├── delineate.xml │ │ │ ├── delineate_from_to.xml │ │ │ ├── delineate_from_to_trailing.xml │ │ │ ├── delineate_shifted.xml │ │ │ ├── delineate_shifted_trailing.xml │ │ │ ├── delineate_trailing.xml │ │ │ ├── enum.xml │ │ │ ├── enum_from_to.xml │ │ │ ├── enum_from_to_trailing.xml │ │ │ ├── enum_shifted.xml │ │ │ ├── enum_shifted_trailing.xml │ │ │ ├── enum_trailing.xml │ │ │ ├── for.xml │ │ │ ├── for_aux.xml │ │ │ ├── repeat.xml │ │ │ ├── repeat_from_to.xml │ │ │ └── repeat_shifted.xml │ │ ├── seq.xml │ │ ├── seq │ │ ├── auto.xml │ │ ├── auto │ │ │ ├── filter.xml │ │ │ ├── fold_left.xml │ │ │ ├── fold_left_aux.xml │ │ │ ├── fold_right.xml │ │ │ ├── fold_right_aux.xml │ │ │ ├── for_each.xml │ │ │ ├── for_each_i.xml │ │ │ └── transform.xml │ │ ├── binary_transform.xml │ │ ├── complexity │ │ │ ├── duplex.gif │ │ │ ├── reverse_duplex.gif │ │ │ └── size_alt.gif │ │ ├── concat.xml │ │ ├── core.xml │ │ ├── drop.xml │ │ ├── duplex.xml │ │ ├── elem.xml │ │ ├── enumerate.xml │ │ ├── filter.xml │ │ ├── fold_left.xml │ │ ├── fold_left_aux.xml │ │ ├── fold_right.xml │ │ ├── fold_right_aux.xml │ │ ├── for_each.xml │ │ ├── for_each_i.xml │ │ ├── infuse.xml │ │ ├── insert.xml │ │ ├── pop_back.xml │ │ ├── range.xml │ │ ├── remove.xml │ │ ├── replace.xml │ │ ├── reverse.xml │ │ ├── size.xml │ │ ├── take.xml │ │ ├── to_array.xml │ │ ├── to_list.xml │ │ ├── to_string.xml │ │ ├── to_tuple.xml │ │ ├── transform.xml │ │ ├── variadic.xml │ │ ├── variadic │ │ │ ├── auto.xml │ │ │ ├── auto │ │ │ │ ├── filter.xml │ │ │ │ ├── fold_left.xml │ │ │ │ ├── fold_left_aux.xml │ │ │ │ ├── fold_right.xml │ │ │ │ ├── fold_right_aux.xml │ │ │ │ ├── for_each.xml │ │ │ │ ├── for_each_i.xml │ │ │ │ └── transform.xml │ │ │ ├── core.xml │ │ │ ├── filter.xml │ │ │ ├── fold_left.xml │ │ │ ├── fold_left_aux.xml │ │ │ ├── fold_right.xml │ │ │ ├── fold_right_aux.xml │ │ │ ├── for_each.xml │ │ │ ├── for_each_i.xml │ │ │ └── transform.xml │ │ └── zip.xml │ │ ├── slot.xml │ │ ├── slot │ │ ├── counter.xml │ │ └── slot.xml │ │ ├── string.xml │ │ ├── string │ │ ├── charize.xml │ │ ├── compare.xml │ │ ├── compare_insensitive.xml │ │ ├── core.xml │ │ ├── to_lower.xml │ │ ├── to_upper.xml │ │ ├── ucharize.xml │ │ └── wcharize.xml │ │ ├── stringize.xml │ │ ├── tuple.xml │ │ ├── tuple │ │ ├── as_args.xml │ │ ├── auto.xml │ │ ├── auto │ │ │ ├── filter.xml │ │ │ ├── fold_left.xml │ │ │ ├── fold_left_aux.xml │ │ │ ├── fold_right.xml │ │ │ ├── fold_right_aux.xml │ │ │ ├── for_each.xml │ │ │ ├── for_each_i.xml │ │ │ └── transform.xml │ │ ├── batch.xml │ │ ├── complexity │ │ │ ├── concat.gif │ │ │ ├── drop.gif │ │ │ ├── elem_alt.gif │ │ │ ├── filter.gif │ │ │ ├── fold_left.gif │ │ │ ├── fold_left_aux.gif │ │ │ ├── fold_right.gif │ │ │ ├── fold_right_aux.gif │ │ │ ├── for_each.gif │ │ │ ├── for_each_i.gif │ │ │ ├── insert.gif │ │ │ ├── pop_back.gif │ │ │ ├── range.gif │ │ │ ├── remove.gif │ │ │ ├── replace.gif │ │ │ ├── reverse_alt.gif │ │ │ ├── size.gif │ │ │ ├── take.gif │ │ │ ├── to_list_alt.gif │ │ │ ├── to_seq_alt.gif │ │ │ ├── to_string_alt.gif │ │ │ └── transform.gif │ │ ├── concat.xml │ │ ├── core.xml │ │ ├── drop.xml │ │ ├── eat.xml │ │ ├── efficiency │ │ │ ├── fold_left.gif │ │ │ ├── fold_left_aux.gif │ │ │ └── range.gif │ │ ├── elem.xml │ │ ├── filter.xml │ │ ├── fold_left.xml │ │ ├── fold_left_aux.xml │ │ ├── fold_right.xml │ │ ├── fold_right_aux.xml │ │ ├── for_each.xml │ │ ├── for_each_i.xml │ │ ├── insert.xml │ │ ├── pop_back.xml │ │ ├── range.xml │ │ ├── rem.xml │ │ ├── remove.xml │ │ ├── replace.xml │ │ ├── reverse.xml │ │ ├── size.xml │ │ ├── take.xml │ │ ├── to_list.xml │ │ ├── to_seq.xml │ │ ├── to_string.xml │ │ └── transform.xml │ │ ├── ustringize.xml │ │ └── wstringize.xml ├── closures.xml ├── continuation-machine.xml ├── conventions.xml ├── cpp-intro.xml ├── deferral.xml ├── doc-conventions.xml ├── equalization.xml ├── evaluated-parameters.xml ├── evaluated-slots.xml ├── exponentials.xml ├── file-iteration.xml ├── generics.xml ├── higher-order.xml ├── il.xml ├── intermediates.xml ├── introduction.xml ├── lambda.xml ├── library.xml ├── lists.xml ├── local-iteration.xml ├── macro-expansion.xml ├── named-externals.xml ├── overview.xml ├── parametrics.xml ├── rails.xml ├── recursion.xml ├── roman-numerals.xml ├── saturation.xml ├── second-tier.xml ├── sequences.xml ├── sequential-iteration.xml ├── strings.xml ├── true-optionals.xml ├── tuples.xml └── tutorial.xml └── pp-book ├── alternate.css ├── background.gif ├── build ├── common.xsl ├── copyright.xsl ├── document.xsl ├── header-name.xsl ├── header.xsl ├── index.xsl ├── library.xsl ├── license.xml ├── lookup.xsl ├── meta.xsl ├── script.xsl ├── spacing.xsl ├── string.xsl ├── style.css ├── symbol.xsl ├── unknown.xml └── whitespace.xsl /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/README -------------------------------------------------------------------------------- /built-docs/active-arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/active-arguments.html -------------------------------------------------------------------------------- /built-docs/alpha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/alpha.gif -------------------------------------------------------------------------------- /built-docs/alternate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/alternate.css -------------------------------------------------------------------------------- /built-docs/arbitrary-precision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/arbitrary-precision.html -------------------------------------------------------------------------------- /built-docs/argument-remap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/argument-remap.html -------------------------------------------------------------------------------- /built-docs/arrays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/arrays.html -------------------------------------------------------------------------------- /built-docs/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/background.gif -------------------------------------------------------------------------------- /built-docs/beta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/beta.gif -------------------------------------------------------------------------------- /built-docs/binary-literals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/binary-literals.html -------------------------------------------------------------------------------- /built-docs/bypass-semantics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/bypass-semantics.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/append.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/auto.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/cast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/cast.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/concat.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/drop.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/elem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/elem.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/filter.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/insert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/insert.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/range.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/remove.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/size.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/take.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/take.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/algorithm/x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/algorithm/x.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/add.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/bool.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/dec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/dec.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/demote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/demote.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/div.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/equal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/equal.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/inc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/inc.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/less.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/mod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/mod.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/mul.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/mul.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/neg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/neg.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/sign.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arbitrary/sub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arbitrary/sub.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arithmetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arithmetic.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arithmetic/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arithmetic/add.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arithmetic/dec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arithmetic/dec.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arithmetic/div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arithmetic/div.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arithmetic/inc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arithmetic/inc.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arithmetic/mod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arithmetic/mod.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arithmetic/mul.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arithmetic/mul.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/arithmetic/sub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/arithmetic/sub.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array/core.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array/elem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array/elem.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array/reverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array/reverse.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array/size.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array/to_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array/to_list.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array/to_seq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array/to_seq.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array/to_string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array/to_string.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/array/to_tuple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/array/to_tuple.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/cat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/cat.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/comparison.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/comparison/equal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/comparison/equal.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/comparison/less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/comparison/less.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/comparison/max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/comparison/max.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/comparison/min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/comparison/min.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/config.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/auto.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/branch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/branch.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/if.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/if.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/iif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/iif.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/null.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/null.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/unless.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/unless.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/when.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/when.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/while.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/while.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/x.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/control/x/while.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/control/x/while.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/debug.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/debug/assert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/debug/assert.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/debug/failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/debug/failure.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/debug/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/debug/line.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/detection.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/detection/is_one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/detection/is_one.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/extended.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/facilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/facilities.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/facilities/abbr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/facilities/abbr.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/facilities/bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/facilities/bind.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/facilities/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/facilities/empty.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/facilities/push.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/facilities/push.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/facilities/split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/facilities/split.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/facilities/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/facilities/type.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/facilities/unbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/facilities/unbox.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/generics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/generics.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/generics/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/generics/core.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/generics/is_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/generics/is_type.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/generics/strip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/generics/strip.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/generics/typeof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/generics/typeof.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/iteration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/iteration.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/iteration/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/iteration/file.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/iteration/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/iteration/local.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/call.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/closure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/closure.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/curry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/curry.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/execute.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/invoke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/invoke.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/ops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/ops.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/parse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/parse.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/planar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/planar.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/lambda/route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/lambda/route.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/limits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/limits.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/list.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/list/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/list/core.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/and.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/and.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/bitand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/bitand.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/bitnand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/bitnand.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/bitnor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/bitnor.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/bitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/bitor.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/bitxnor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/bitxnor.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/bitxor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/bitxor.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/bool.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/compl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/compl.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/nand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/nand.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/nor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/nor.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/not.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/not.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/or.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/or.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/xnor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/xnor.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/logical/xor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/logical/xor.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/punctuation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/punctuation.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/punctuation/hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/punctuation/hash.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/basic.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/block.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/buffer.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/delay.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/delve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/delve.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/expr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/expr.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/phase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/phase.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/rail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/rail.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/recursion/revive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/recursion/revive.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/repetition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/repetition.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/repetition/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/repetition/auto.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/repetition/enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/repetition/enum.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/repetition/for.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/repetition/for.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/repetition/x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/repetition/x.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/repetition/x/for.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/repetition/x/for.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/auto.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/auto/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/auto/filter.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/concat.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/core.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/drop.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/duplex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/duplex.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/elem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/elem.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/enumerate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/enumerate.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/filter.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/fold_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/fold_left.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/fold_right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/fold_right.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/for_each.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/for_each.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/for_each_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/for_each_i.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/infuse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/infuse.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/insert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/insert.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/pop_back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/pop_back.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/range.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/remove.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/replace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/replace.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/reverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/reverse.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/size.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/take.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/take.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/to_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/to_array.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/to_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/to_list.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/to_string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/to_string.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/to_tuple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/to_tuple.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/transform.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/variadic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/variadic.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/seq/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/seq/zip.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/slot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/slot.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/slot/counter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/slot/counter.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/slot/slot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/slot/slot.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/string.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/string/charize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/string/charize.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/string/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/string/compare.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/string/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/string/core.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/string/to_lower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/string/to_lower.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/string/to_upper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/string/to_upper.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/string/ucharize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/string/ucharize.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/string/wcharize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/string/wcharize.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/stringize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/stringize.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/as_args.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/as_args.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/auto.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/batch.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/concat.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/core.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/drop.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/eat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/eat.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/elem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/elem.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/filter.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/fold_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/fold_left.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/fold_right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/fold_right.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/for_each.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/for_each.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/for_each_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/for_each_i.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/insert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/insert.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/pop_back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/pop_back.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/range.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/rem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/rem.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/remove.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/replace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/replace.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/reverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/reverse.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/size.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/take.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/take.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/to_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/to_list.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/to_seq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/to_seq.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/to_string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/to_string.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/tuple/transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/tuple/transform.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/ustringize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/ustringize.html -------------------------------------------------------------------------------- /built-docs/chaos/preprocessor/wstringize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/chaos/preprocessor/wstringize.html -------------------------------------------------------------------------------- /built-docs/closures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/closures.html -------------------------------------------------------------------------------- /built-docs/continuation-machine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/continuation-machine.html -------------------------------------------------------------------------------- /built-docs/conventions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/conventions.html -------------------------------------------------------------------------------- /built-docs/cpp-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/cpp-intro.html -------------------------------------------------------------------------------- /built-docs/deferral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/deferral.html -------------------------------------------------------------------------------- /built-docs/doc-conventions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/doc-conventions.html -------------------------------------------------------------------------------- /built-docs/documents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/documents.html -------------------------------------------------------------------------------- /built-docs/equalization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/equalization.html -------------------------------------------------------------------------------- /built-docs/evaluated-parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/evaluated-parameters.html -------------------------------------------------------------------------------- /built-docs/evaluated-slots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/evaluated-slots.html -------------------------------------------------------------------------------- /built-docs/exponentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/exponentials.html -------------------------------------------------------------------------------- /built-docs/file-iteration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/file-iteration.html -------------------------------------------------------------------------------- /built-docs/generics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/generics.html -------------------------------------------------------------------------------- /built-docs/headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/headers.html -------------------------------------------------------------------------------- /built-docs/higher-order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/higher-order.html -------------------------------------------------------------------------------- /built-docs/il.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/il.html -------------------------------------------------------------------------------- /built-docs/intermediates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/intermediates.html -------------------------------------------------------------------------------- /built-docs/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/introduction.html -------------------------------------------------------------------------------- /built-docs/lambda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/lambda.html -------------------------------------------------------------------------------- /built-docs/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/license.html -------------------------------------------------------------------------------- /built-docs/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/lists.html -------------------------------------------------------------------------------- /built-docs/local-iteration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/local-iteration.html -------------------------------------------------------------------------------- /built-docs/macro-expansion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/macro-expansion.html -------------------------------------------------------------------------------- /built-docs/named-externals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/named-externals.html -------------------------------------------------------------------------------- /built-docs/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/overview.html -------------------------------------------------------------------------------- /built-docs/parametrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/parametrics.html -------------------------------------------------------------------------------- /built-docs/primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/primary.html -------------------------------------------------------------------------------- /built-docs/rails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/rails.html -------------------------------------------------------------------------------- /built-docs/recursion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/recursion.html -------------------------------------------------------------------------------- /built-docs/roman-numerals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/roman-numerals.html -------------------------------------------------------------------------------- /built-docs/saturation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/saturation.html -------------------------------------------------------------------------------- /built-docs/second-tier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/second-tier.html -------------------------------------------------------------------------------- /built-docs/secondary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/secondary.html -------------------------------------------------------------------------------- /built-docs/sequences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/sequences.html -------------------------------------------------------------------------------- /built-docs/sequential-iteration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/sequential-iteration.html -------------------------------------------------------------------------------- /built-docs/strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/strings.html -------------------------------------------------------------------------------- /built-docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/style.css -------------------------------------------------------------------------------- /built-docs/true-optionals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/true-optionals.html -------------------------------------------------------------------------------- /built-docs/tuples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/tuples.html -------------------------------------------------------------------------------- /built-docs/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/tutorial.html -------------------------------------------------------------------------------- /built-docs/unknown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/built-docs/unknown.html -------------------------------------------------------------------------------- /chaos/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/append.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/append.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/bubblesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/bubblesort.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/fold_left_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/fold_left_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/fold_right_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/fold_right_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/insertion_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/insertion_sort.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/merge_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/merge_sort.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/auto/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/auto/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/bubblesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/bubblesort.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/cast.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/combinatorial_repeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/combinatorial_repeat.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/concat.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/drop.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/elem.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/enumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/enumerate.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/fold_left_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/fold_left_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/fold_right_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/fold_right_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/for_each_product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/for_each_product.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/insert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/insert.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/insertion_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/insertion_sort.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/merge_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/merge_sort.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/parametric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/parametric.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/parametric/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/parametric/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/pop_back.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/pop_back.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/prepend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/prepend.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/push_back.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/push_back.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/range.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/remove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/remove.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/replace.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/reverse.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/size.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/take.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/take.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/fold_left_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/fold_left_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/fold_right_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/fold_right_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/for_each_product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/for_each_product.h -------------------------------------------------------------------------------- /chaos/preprocessor/algorithm/x/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/algorithm/x/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/add.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/bool.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/dec.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/demote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/demote.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/divide.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/fix.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/is_shorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/is_shorter.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/lookup.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/merge.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/minus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/minus.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/plus.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/rel.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/scan.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/special.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/swap.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/detail/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/detail/times.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/div.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/equal.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/greater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/greater.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/greater_equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/greater_equal.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/inc.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/less.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/less_equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/less_equal.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/literal.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/mod.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/mul.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/neg.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/not_equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/not_equal.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/promote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/promote.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/sign.h -------------------------------------------------------------------------------- /chaos/preprocessor/arbitrary/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arbitrary/sub.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/add.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/dec.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/div.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/in_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/in_range.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/inc.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/machine.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/machine/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/machine/add.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/machine/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/machine/div.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/machine/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/machine/mod.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/machine/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/machine/mul.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/machine/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/machine/sub.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/mod.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/mul.h -------------------------------------------------------------------------------- /chaos/preprocessor/arithmetic/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/arithmetic/sub.h -------------------------------------------------------------------------------- /chaos/preprocessor/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array.h -------------------------------------------------------------------------------- /chaos/preprocessor/array/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array/core.h -------------------------------------------------------------------------------- /chaos/preprocessor/array/elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array/elem.h -------------------------------------------------------------------------------- /chaos/preprocessor/array/reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array/reverse.h -------------------------------------------------------------------------------- /chaos/preprocessor/array/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array/size.h -------------------------------------------------------------------------------- /chaos/preprocessor/array/to_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array/to_list.h -------------------------------------------------------------------------------- /chaos/preprocessor/array/to_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array/to_seq.h -------------------------------------------------------------------------------- /chaos/preprocessor/array/to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array/to_string.h -------------------------------------------------------------------------------- /chaos/preprocessor/array/to_tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/array/to_tuple.h -------------------------------------------------------------------------------- /chaos/preprocessor/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/cat.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison/equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison/equal.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison/greater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison/greater.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison/greater_equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison/greater_equal.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison/less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison/less.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison/less_equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison/less_equal.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison/max.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison/min.h -------------------------------------------------------------------------------- /chaos/preprocessor/comparison/not_equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/comparison/not_equal.h -------------------------------------------------------------------------------- /chaos/preprocessor/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/config.h -------------------------------------------------------------------------------- /chaos/preprocessor/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/auto.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/auto/while.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/auto/while.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/auto/while_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/auto/while_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/branch.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/detail/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/detail/null.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/expr_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/expr_if.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/if.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/iif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/iif.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/include_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/include_if.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/inline_unless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/inline_unless.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/inline_when.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/inline_when.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/null.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/placemarker_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/placemarker_if.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/unless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/unless.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/variadic_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/variadic_if.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/variadic_iif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/variadic_iif.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/when.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/when.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/while.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/while.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/while_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/while_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/x.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/x/while.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/x/while.h -------------------------------------------------------------------------------- /chaos/preprocessor/control/x/while_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/control/x/while_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/debug.h -------------------------------------------------------------------------------- /chaos/preprocessor/debug/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/debug/assert.h -------------------------------------------------------------------------------- /chaos/preprocessor/debug/failure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/debug/failure.h -------------------------------------------------------------------------------- /chaos/preprocessor/debug/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/debug/line.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/compare.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_binary.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_empty.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_flag.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_nullary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_nullary.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_numeric.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_one.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_ternary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_ternary.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_unary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_unary.h -------------------------------------------------------------------------------- /chaos/preprocessor/detection/is_variadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/detection/is_variadic.h -------------------------------------------------------------------------------- /chaos/preprocessor/extended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/extended.h -------------------------------------------------------------------------------- /chaos/preprocessor/extended/auto_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/extended/auto_cat.h -------------------------------------------------------------------------------- /chaos/preprocessor/extended/partial_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/extended/partial_cat.h -------------------------------------------------------------------------------- /chaos/preprocessor/extended/reverse_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/extended/reverse_cat.h -------------------------------------------------------------------------------- /chaos/preprocessor/extended/variadic_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/extended/variadic_cat.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/abbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/abbr.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/as_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/as_args.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/binary.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/bind.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/default.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/empty.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/encode.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/expand.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/expander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/expander.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/identity.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/indirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/indirect.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/intercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/intercept.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/optional.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/overload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/overload.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/push.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/split.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/type.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/unbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/unbox.h -------------------------------------------------------------------------------- /chaos/preprocessor/facilities/whitespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/facilities/whitespace.h -------------------------------------------------------------------------------- /chaos/preprocessor/generics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/generics.h -------------------------------------------------------------------------------- /chaos/preprocessor/generics/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/generics/core.h -------------------------------------------------------------------------------- /chaos/preprocessor/generics/is_elemental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/generics/is_elemental.h -------------------------------------------------------------------------------- /chaos/preprocessor/generics/is_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/generics/is_type.h -------------------------------------------------------------------------------- /chaos/preprocessor/generics/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/generics/strip.h -------------------------------------------------------------------------------- /chaos/preprocessor/generics/typeof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/generics/typeof.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/detail/i1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/detail/i1.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/detail/i2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/detail/i2.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/detail/i3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/detail/i3.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/detail/i4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/detail/i4.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/detail/i5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/detail/i5.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/detail/i6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/detail/i6.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/detail/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/detail/local.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/file.h -------------------------------------------------------------------------------- /chaos/preprocessor/iteration/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/iteration/local.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/call.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/closure.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/curry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/curry.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/detail/placeholders_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/detail/placeholders_0.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/detail/placeholders_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/detail/placeholders_1.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/execute.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/invoke.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/ops.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/parse.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/planar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/planar.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/route.h -------------------------------------------------------------------------------- /chaos/preprocessor/lambda/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/lambda/trampoline.h -------------------------------------------------------------------------------- /chaos/preprocessor/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/limits.h -------------------------------------------------------------------------------- /chaos/preprocessor/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/list.h -------------------------------------------------------------------------------- /chaos/preprocessor/list/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/list/core.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/and.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/and.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/bitand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/bitand.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/bitnand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/bitnand.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/bitnor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/bitnor.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/bitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/bitor.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/bitxnor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/bitxnor.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/bitxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/bitxor.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/bool.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/compl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/compl.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/nand.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/nor.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/not.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/or.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/xnor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/xnor.h -------------------------------------------------------------------------------- /chaos/preprocessor/logical/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/logical/xor.h -------------------------------------------------------------------------------- /chaos/preprocessor/punctuation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/punctuation.h -------------------------------------------------------------------------------- /chaos/preprocessor/punctuation/comma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/punctuation/comma.h -------------------------------------------------------------------------------- /chaos/preprocessor/punctuation/comma_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/punctuation/comma_if.h -------------------------------------------------------------------------------- /chaos/preprocessor/punctuation/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/punctuation/hash.h -------------------------------------------------------------------------------- /chaos/preprocessor/punctuation/paren.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/punctuation/paren.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/auto_rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/auto_rec.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/basic.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/block.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/buffer.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/context.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/delay.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/delve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/delve.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/dynamic.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/equalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/equalize.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/expr.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/higher_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/higher_order.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/machine.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/phase.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/rail.h -------------------------------------------------------------------------------- /chaos/preprocessor/recursion/revive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/recursion/revive.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/delineate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/delineate.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/enum.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/enum_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/enum_from_to.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/enum_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/enum_shifted.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/enum_trailing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/enum_trailing.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/for.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/for_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/for_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/repeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/repeat.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/repeat_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/repeat_from_to.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/auto/repeat_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/auto/repeat_shifted.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/delineate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/delineate.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/delineate_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/delineate_from_to.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/delineate_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/delineate_params.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/delineate_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/delineate_shifted.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/delineate_trailing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/delineate_trailing.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/enum.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/enum_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/enum_from_to.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/enum_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/enum_params.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/enum_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/enum_shifted.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/enum_shifted_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/enum_shifted_params.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/enum_trailing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/enum_trailing.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/for.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/for_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/for_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/parametric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/parametric.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/parametric/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/parametric/enum.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/parametric/for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/parametric/for.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/parametric/for_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/parametric/for_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/parametric/repeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/parametric/repeat.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/repeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/repeat.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/repeat_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/repeat_from_to.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/repeat_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/repeat_shifted.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/delineate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/delineate.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/delineate_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/delineate_from_to.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/delineate_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/delineate_shifted.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/enum.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/enum_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/enum_from_to.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/enum_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/enum_shifted.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/enum_trailing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/enum_trailing.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/for.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/for_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/for_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/repeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/repeat.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/repeat_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/repeat_from_to.h -------------------------------------------------------------------------------- /chaos/preprocessor/repetition/x/repeat_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/repetition/x/repeat_shifted.h -------------------------------------------------------------------------------- /chaos/preprocessor/sandbox/apply_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/sandbox/apply_scan.h -------------------------------------------------------------------------------- /chaos/preprocessor/sandbox/detain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/sandbox/detain.h -------------------------------------------------------------------------------- /chaos/preprocessor/sandbox/equalization_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/sandbox/equalization_assert.h -------------------------------------------------------------------------------- /chaos/preprocessor/sandbox/inhibit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/sandbox/inhibit.h -------------------------------------------------------------------------------- /chaos/preprocessor/sandbox/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/sandbox/stream.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto/fold_left_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto/fold_left_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto/fold_right_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto/fold_right_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/auto/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/auto/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/binary_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/binary_transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/concat.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/core.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/detail/close.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/detail/close.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/drop.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/duplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/duplex.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/elem.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/enumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/enumerate.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/fold_left_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/fold_left_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/fold_right_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/fold_right_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/infuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/infuse.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/insert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/insert.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/pop_back.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/pop_back.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/range.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/remove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/remove.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/replace.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/reverse.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/size.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/take.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/take.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/to_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/to_array.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/to_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/to_list.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/to_string.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/to_tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/to_tuple.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/auto.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/auto/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/auto/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/auto/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/auto/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/auto/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/auto/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/auto/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/auto/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/auto/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/auto/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/auto/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/auto/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/core.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/fold_left_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/fold_left_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/fold_right_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/fold_right_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/variadic/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/variadic/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/seq/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/seq/zip.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/counter.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/detail/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/detail/counter.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/detail/s1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/detail/s1.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/detail/s2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/detail/s2.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/detail/s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/detail/s3.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/detail/s4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/detail/s4.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/detail/s5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/detail/s5.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/detail/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/detail/shared.h -------------------------------------------------------------------------------- /chaos/preprocessor/slot/slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/slot/slot.h -------------------------------------------------------------------------------- /chaos/preprocessor/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string.h -------------------------------------------------------------------------------- /chaos/preprocessor/string/charize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string/charize.h -------------------------------------------------------------------------------- /chaos/preprocessor/string/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string/compare.h -------------------------------------------------------------------------------- /chaos/preprocessor/string/compare_insensitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string/compare_insensitive.h -------------------------------------------------------------------------------- /chaos/preprocessor/string/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string/core.h -------------------------------------------------------------------------------- /chaos/preprocessor/string/to_lower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string/to_lower.h -------------------------------------------------------------------------------- /chaos/preprocessor/string/to_upper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string/to_upper.h -------------------------------------------------------------------------------- /chaos/preprocessor/string/ucharize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string/ucharize.h -------------------------------------------------------------------------------- /chaos/preprocessor/string/wcharize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/string/wcharize.h -------------------------------------------------------------------------------- /chaos/preprocessor/stringize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/stringize.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/as_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/as_args.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto/fold_left_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto/fold_left_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto/fold_right_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto/fold_right_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/auto/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/auto/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/batch.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/concat.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/core.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/drop.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/eat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/eat.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/elem.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/filter.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/fold_left.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/fold_left.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/fold_left_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/fold_left_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/fold_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/fold_right.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/fold_right_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/fold_right_aux.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/for_each.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/for_each_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/for_each_i.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/insert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/insert.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/pop_back.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/pop_back.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/range.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/rem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/rem.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/remove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/remove.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/replace.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/reverse.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/size.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/take.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/take.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/to_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/to_list.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/to_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/to_seq.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/to_string.h -------------------------------------------------------------------------------- /chaos/preprocessor/tuple/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/tuple/transform.h -------------------------------------------------------------------------------- /chaos/preprocessor/ustringize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/ustringize.h -------------------------------------------------------------------------------- /chaos/preprocessor/wstringize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/chaos/preprocessor/wstringize.h -------------------------------------------------------------------------------- /documentation/active-arguments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/active-arguments.xml -------------------------------------------------------------------------------- /documentation/alpha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/alpha.gif -------------------------------------------------------------------------------- /documentation/arbitrary-precision.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/arbitrary-precision.xml -------------------------------------------------------------------------------- /documentation/argument-remap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/argument-remap.xml -------------------------------------------------------------------------------- /documentation/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/arrays.xml -------------------------------------------------------------------------------- /documentation/beta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/beta.gif -------------------------------------------------------------------------------- /documentation/binary-literals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/binary-literals.xml -------------------------------------------------------------------------------- /documentation/bypass-semantics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/bypass-semantics.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/algorithm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/algorithm.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/algorithm/auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/algorithm/auto.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/algorithm/cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/algorithm/cast.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/algorithm/drop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/algorithm/drop.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/algorithm/elem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/algorithm/elem.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/algorithm/size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/algorithm/size.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/algorithm/take.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/algorithm/take.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/algorithm/x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/algorithm/x.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/arbitrary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/arbitrary.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/arbitrary/add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/arbitrary/add.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/arithmetic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/arithmetic.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/array.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/array/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/array/core.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/array/elem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/array/elem.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/array/size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/array/size.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/cat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/cat.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/comparison.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/comparison.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/config.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/control.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/control/if.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/control/if.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/control/iif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/control/iif.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/control/x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/control/x.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/debug.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/debug/line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/debug/line.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/detection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/detection.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/extended.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/facilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/facilities.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/generics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/generics.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/iteration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/iteration.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/lambda.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/lambda.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/lambda/call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/lambda/call.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/lambda/ops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/lambda/ops.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/limits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/limits.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/list.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/list/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/list/core.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/logical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/logical.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/logical/and.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/logical/and.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/logical/nor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/logical/nor.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/logical/not.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/logical/not.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/logical/or.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/logical/or.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/logical/xor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/logical/xor.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/punctuation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/punctuation.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/recursion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/recursion.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/repetition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/repetition.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/auto.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/concat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/concat.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/core.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/drop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/drop.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/duplex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/duplex.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/elem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/elem.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/filter.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/infuse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/infuse.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/insert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/insert.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/range.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/range.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/remove.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/replace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/replace.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/reverse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/reverse.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/size.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/take.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/take.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/to_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/to_list.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/seq/zip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/seq/zip.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/slot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/slot.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/slot/slot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/slot/slot.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/string.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/string/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/string/core.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/stringize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/stringize.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/auto.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/batch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/batch.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/core.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/drop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/drop.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/eat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/eat.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/elem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/elem.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/range.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/range.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/rem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/rem.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/size.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/tuple/take.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/tuple/take.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/ustringize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/ustringize.xml -------------------------------------------------------------------------------- /documentation/chaos/preprocessor/wstringize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/chaos/preprocessor/wstringize.xml -------------------------------------------------------------------------------- /documentation/closures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/closures.xml -------------------------------------------------------------------------------- /documentation/continuation-machine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/continuation-machine.xml -------------------------------------------------------------------------------- /documentation/conventions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/conventions.xml -------------------------------------------------------------------------------- /documentation/cpp-intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/cpp-intro.xml -------------------------------------------------------------------------------- /documentation/deferral.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/deferral.xml -------------------------------------------------------------------------------- /documentation/doc-conventions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/doc-conventions.xml -------------------------------------------------------------------------------- /documentation/equalization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/equalization.xml -------------------------------------------------------------------------------- /documentation/evaluated-parameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/evaluated-parameters.xml -------------------------------------------------------------------------------- /documentation/evaluated-slots.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/evaluated-slots.xml -------------------------------------------------------------------------------- /documentation/exponentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/exponentials.xml -------------------------------------------------------------------------------- /documentation/file-iteration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/file-iteration.xml -------------------------------------------------------------------------------- /documentation/generics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/generics.xml -------------------------------------------------------------------------------- /documentation/higher-order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/higher-order.xml -------------------------------------------------------------------------------- /documentation/il.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/il.xml -------------------------------------------------------------------------------- /documentation/intermediates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/intermediates.xml -------------------------------------------------------------------------------- /documentation/introduction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/introduction.xml -------------------------------------------------------------------------------- /documentation/lambda.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/lambda.xml -------------------------------------------------------------------------------- /documentation/library.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/library.xml -------------------------------------------------------------------------------- /documentation/lists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/lists.xml -------------------------------------------------------------------------------- /documentation/local-iteration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/local-iteration.xml -------------------------------------------------------------------------------- /documentation/macro-expansion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/macro-expansion.xml -------------------------------------------------------------------------------- /documentation/named-externals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/named-externals.xml -------------------------------------------------------------------------------- /documentation/overview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/overview.xml -------------------------------------------------------------------------------- /documentation/parametrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/parametrics.xml -------------------------------------------------------------------------------- /documentation/rails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/rails.xml -------------------------------------------------------------------------------- /documentation/recursion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/recursion.xml -------------------------------------------------------------------------------- /documentation/roman-numerals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/roman-numerals.xml -------------------------------------------------------------------------------- /documentation/saturation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/saturation.xml -------------------------------------------------------------------------------- /documentation/second-tier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/second-tier.xml -------------------------------------------------------------------------------- /documentation/sequences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/sequences.xml -------------------------------------------------------------------------------- /documentation/sequential-iteration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/sequential-iteration.xml -------------------------------------------------------------------------------- /documentation/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/strings.xml -------------------------------------------------------------------------------- /documentation/true-optionals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/true-optionals.xml -------------------------------------------------------------------------------- /documentation/tuples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/tuples.xml -------------------------------------------------------------------------------- /documentation/tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/documentation/tutorial.xml -------------------------------------------------------------------------------- /pp-book/alternate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/alternate.css -------------------------------------------------------------------------------- /pp-book/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/background.gif -------------------------------------------------------------------------------- /pp-book/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/build -------------------------------------------------------------------------------- /pp-book/common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/common.xsl -------------------------------------------------------------------------------- /pp-book/copyright.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/copyright.xsl -------------------------------------------------------------------------------- /pp-book/document.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/document.xsl -------------------------------------------------------------------------------- /pp-book/header-name.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/header-name.xsl -------------------------------------------------------------------------------- /pp-book/header.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/header.xsl -------------------------------------------------------------------------------- /pp-book/index.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/index.xsl -------------------------------------------------------------------------------- /pp-book/library.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/library.xsl -------------------------------------------------------------------------------- /pp-book/license.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/license.xml -------------------------------------------------------------------------------- /pp-book/lookup.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/lookup.xsl -------------------------------------------------------------------------------- /pp-book/meta.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/meta.xsl -------------------------------------------------------------------------------- /pp-book/script.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/script.xsl -------------------------------------------------------------------------------- /pp-book/spacing.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/spacing.xsl -------------------------------------------------------------------------------- /pp-book/string.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/string.xsl -------------------------------------------------------------------------------- /pp-book/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/style.css -------------------------------------------------------------------------------- /pp-book/symbol.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/symbol.xsl -------------------------------------------------------------------------------- /pp-book/unknown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/unknown.xml -------------------------------------------------------------------------------- /pp-book/whitespace.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/chaos-pp/HEAD/pp-book/whitespace.xsl --------------------------------------------------------------------------------