├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── book.toml ├── css └── custom.css ├── js ├── mermaid-init.js └── mermaid.min.js ├── src ├── README.md ├── SUMMARY.md ├── feedback.md ├── fm │ ├── copyright.md │ └── title-page.md ├── images │ ├── LiffyBot-5-x1000-bold-black-solid.png │ ├── LiffyBot-5-x1000-bold-color.png │ ├── LiffyBot-5-x18-bold-black-solid.png │ ├── LiffyBot-5-x18-bold-black.png │ ├── LiffyBot-5-x24-bold-black-solid.png │ ├── LiffyBot-5-x24-bold-black.png │ ├── LiffyBot-5-x32-bold-black-solid.png │ ├── LiffyBot-5-x32-bold-black.png │ ├── LiffyBot-5-x500-bold-black-solid.png │ ├── LiffyBot-5-x500-bold-color.png │ ├── LiffyBot-5-x64-bold-black-solid.png │ ├── LiffyBot-5-x64-bold-black.png │ ├── chinuel-cover-bw.png │ ├── chinuel-cover-full-color.png │ ├── cnbb-pub-logo-1.6.png │ ├── cover-all-large.jpg │ ├── cover-all.jpg │ ├── cover-back-large.jpg │ ├── cover-back.jpg │ ├── cover-binding-large.jpg │ ├── cover-binding.jpg │ ├── cover-large.jpg │ └── cover.jpg ├── part1 │ ├── README.md │ ├── intro │ │ ├── README.md │ │ ├── about.md │ │ ├── conventions.md │ │ ├── guessing-game │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── cast.md │ │ │ ├── check.md │ │ │ ├── code.md │ │ │ ├── finishing-touches.md │ │ │ ├── input.md │ │ │ ├── integrate.md │ │ │ ├── planning.md │ │ │ ├── play.md │ │ │ └── review.md │ │ ├── hw │ │ │ ├── README.md │ │ │ ├── main.md │ │ │ ├── otp.md │ │ │ └── repl.md │ │ ├── prereq.md │ │ └── setup.md │ └── repl │ │ ├── README.md │ │ ├── c.md │ │ ├── features.md │ │ ├── files.md │ │ ├── files │ │ ├── compile.md │ │ ├── eval.md │ │ ├── include.md │ │ └── load.md │ │ ├── help-builtins.md │ │ ├── help-cmds.md │ │ ├── help-special-vars.md │ │ ├── help.md │ │ ├── job-control.md │ │ ├── readline.md │ │ └── start.md ├── part2 │ ├── README.md │ ├── arrays │ │ └── README.md │ ├── byte-bin │ │ ├── README.md │ │ ├── bifs │ │ │ ├── README.md │ │ │ ├── bit.md │ │ │ ├── byte.md │ │ │ ├── list-to.md │ │ │ ├── split.md │ │ │ ├── summ.md │ │ │ ├── term-to.md │ │ │ ├── to-list.md │ │ │ └── to-term.md │ │ ├── bits │ │ │ ├── README.md │ │ │ ├── combo.md │ │ │ ├── defsize.md │ │ │ ├── genform.md │ │ │ ├── phil.md │ │ │ ├── segs.md │ │ │ ├── size.md │ │ │ ├── types.md │ │ │ └── vars.md │ │ ├── bitstrs │ │ │ ├── README.md │ │ │ ├── align.md │ │ │ ├── append.md │ │ │ ├── create.md │ │ │ ├── ecode.md │ │ │ ├── extract.md │ │ │ ├── morse.md │ │ │ ├── patts.md │ │ │ ├── perf.md │ │ │ ├── size.md │ │ │ ├── summ.md │ │ │ ├── what.md │ │ │ └── why.md │ │ ├── comps │ │ │ ├── README.md │ │ │ ├── binbin.md │ │ │ ├── cartprod.md │ │ │ ├── encode.md │ │ │ ├── manip.md │ │ │ ├── perf.md │ │ │ ├── reverse.md │ │ │ ├── rgb.md │ │ │ ├── simple.md │ │ │ ├── summ.md │ │ │ ├── syntx.md │ │ │ ├── window.md │ │ │ ├── xform.md │ │ │ └── xxx.md │ │ ├── concl │ │ │ └── README.md │ │ ├── ends │ │ │ ├── README.md │ │ │ ├── examples.md │ │ │ ├── hist.md │ │ │ ├── lfe.md │ │ │ ├── native.md │ │ │ ├── parable.md │ │ │ ├── patts.md │ │ │ ├── summ.md │ │ │ ├── when.md │ │ │ └── xplat.md │ │ ├── ops │ │ │ ├── README.md │ │ │ ├── and.md │ │ │ ├── bsl.md │ │ │ ├── bsr.md │ │ │ ├── combo.md │ │ │ ├── negs.md │ │ │ ├── not.md │ │ │ ├── or.md │ │ │ ├── perf.md │ │ │ ├── pract.md │ │ │ ├── summ.md │ │ │ ├── when.md │ │ │ └── xor.md │ │ ├── patts │ │ │ ├── README.md │ │ │ ├── basic.md │ │ │ ├── bits.md │ │ │ ├── funcls.md │ │ │ ├── guards.md │ │ │ ├── pits.md │ │ │ ├── rest.md │ │ │ ├── size.md │ │ │ ├── summ.md │ │ │ ├── symm.md │ │ │ ├── tlv.md │ │ │ └── whatevs.md │ │ ├── realwrld │ │ │ └── README.md │ │ ├── ser │ │ │ ├── README.md │ │ │ ├── basics.md │ │ │ ├── dist.md │ │ │ ├── evo.md │ │ │ ├── example.md │ │ │ ├── pres.md │ │ │ ├── realwrld │ │ │ │ ├── custom.md │ │ │ │ ├── debug.md │ │ │ │ ├── ipv4.md │ │ │ │ ├── logform.md │ │ │ │ ├── perf.md │ │ │ │ └── summ.md │ │ │ ├── sec.md │ │ │ ├── sizecompe.md │ │ │ ├── stor.md │ │ │ ├── summ.md │ │ │ └── why.md │ │ ├── sizes │ │ │ ├── README.md │ │ │ ├── constr8.md │ │ │ ├── def.md │ │ │ ├── example.md │ │ │ ├── patts.md │ │ │ ├── sepcs.md │ │ │ ├── summ.md │ │ │ ├── utf.md │ │ │ └── xxx.md │ │ ├── syntax │ │ │ ├── README.md │ │ │ ├── bitstr.md │ │ │ ├── effic.md │ │ │ ├── fundform.md │ │ │ ├── lists.md │ │ │ ├── mixed.md │ │ │ ├── nested.md │ │ │ ├── smplconstr.md │ │ │ ├── summ.md │ │ │ └── vars.md │ │ ├── types │ │ │ ├── README.md │ │ │ ├── combo.md │ │ │ ├── edge.md │ │ │ ├── ends.md │ │ │ ├── sign.md │ │ │ ├── summ.md │ │ │ ├── units.md │ │ │ └── what.md │ │ └── what │ │ │ ├── README.md │ │ │ ├── beast.md │ │ │ ├── dstnct.md │ │ │ ├── immut.md │ │ │ ├── memrep.md │ │ │ ├── visrep.md │ │ │ └── whynot.md │ ├── chr-str │ │ └── README.md │ ├── cons-cells │ │ ├── README.md │ │ ├── erlang.md │ │ ├── lfe.md │ │ └── lisp.md │ ├── data-types │ │ ├── README.md │ │ ├── atoms.md │ │ ├── bools.md │ │ ├── chars.md │ │ ├── floats.md │ │ └── integers.md │ ├── dicts │ │ └── README.md │ ├── gen-seq │ │ └── README.md │ ├── graphs │ │ └── README.md │ ├── lists │ │ ├── README.md │ │ ├── lists.md │ │ └── strings.md │ ├── mani-list │ │ └── README.md │ ├── maps │ │ └── README.md │ ├── patterns │ │ └── README.md │ ├── proplists │ │ └── README.md │ ├── queues │ │ └── README.md │ ├── records │ │ └── README.md │ ├── tuples │ │ └── README.md │ └── vars │ │ ├── README.md │ │ ├── bindings.md │ │ ├── glob-revist.md │ │ └── patts.md ├── part3 │ ├── README.md │ ├── closures │ │ └── README.md │ ├── eval │ │ └── README.md │ ├── expressioins │ │ └── README.md │ ├── exprs │ │ └── README.md │ ├── files │ │ └── README.md │ ├── funs │ │ └── README.md │ ├── io │ │ └── README.md │ ├── modules │ │ └── README.md │ ├── msgs │ │ └── README.md │ ├── objects │ │ └── README.md │ ├── packages │ │ └── README.md │ ├── processes │ │ └── README.md │ ├── projects │ │ ├── README.md │ │ ├── layout.md │ │ └── rebar3.md │ └── scripting │ │ └── README.md ├── part4 │ ├── README.md │ ├── clients │ │ └── REAEDME.md │ ├── compiler │ │ └── README.md │ ├── ct │ │ └── README.md │ ├── dist │ │ └── README.md │ ├── err-debug │ │ └── README.md │ ├── macros │ │ └── README.md │ ├── ports │ │ └── REAEDME.md │ ├── propr │ │ └── README.md │ ├── servers │ │ └── REAEDME.md │ └── unit │ │ └── README.md ├── part5 │ ├── README.md │ ├── apps │ │ └── README.md │ ├── behaviours │ │ └── README.md │ ├── data │ │ └── README.md │ ├── project │ │ └── README.md │ └── rels │ │ └── README.md ├── part6 │ ├── README.md │ └── tooling │ │ ├── README.md │ │ ├── rebar3 │ │ └── internals │ │ │ ├── appdisc │ │ │ ├── README.md │ │ │ ├── config.md │ │ │ ├── edgecases.md │ │ │ ├── errcond.md │ │ │ ├── examples.md │ │ │ ├── flow.md │ │ │ ├── fsops.md │ │ │ ├── funcs.md │ │ │ ├── state.md │ │ │ └── xref.md │ │ │ ├── appflgen │ │ │ ├── README.md │ │ │ ├── config.md │ │ │ ├── edgecases.md │ │ │ ├── errcond.md │ │ │ ├── examples.md │ │ │ ├── flow.md │ │ │ ├── fsops.md │ │ │ ├── funcs.md │ │ │ ├── state.md │ │ │ └── xref.md │ │ │ ├── cfgref │ │ │ ├── README.md │ │ │ ├── advconfig.md │ │ │ ├── compop.md │ │ │ ├── configprec.md │ │ │ ├── depconfig.md │ │ │ ├── dirconfig.md │ │ │ ├── hookconfig.md │ │ │ ├── profconfig.md │ │ │ └── xref.md │ │ │ ├── comporddet │ │ │ ├── README.md │ │ │ ├── config.md │ │ │ ├── edgecases.md │ │ │ ├── errcond.md │ │ │ ├── examples.md │ │ │ ├── flow.md │ │ │ ├── fsops.md │ │ │ ├── funcs.md │ │ │ ├── state.md │ │ │ └── xref.md │ │ │ ├── depacq │ │ │ ├── README.md │ │ │ ├── config.md │ │ │ ├── edgecases.md │ │ │ ├── errcond.md │ │ │ ├── examples.md │ │ │ ├── flow.md │ │ │ ├── fsops.md │ │ │ ├── funcs.md │ │ │ ├── state.md │ │ │ └── xref.md │ │ │ ├── depgrphmgmt │ │ │ ├── README.md │ │ │ ├── config.md │ │ │ ├── dagstrct.md │ │ │ ├── edgecases.md │ │ │ ├── errcond.md │ │ │ ├── examples.md │ │ │ ├── flow.md │ │ │ ├── fsops.md │ │ │ ├── funcs.md │ │ │ ├── state.md │ │ │ └── xref.md │ │ │ ├── depres-lock │ │ │ ├── README.md │ │ │ ├── config.md │ │ │ ├── edgecases.md │ │ │ ├── errcond.md │ │ │ ├── examples.md │ │ │ ├── flow.md │ │ │ ├── fsops.md │ │ │ ├── funcs.md │ │ │ ├── state.md │ │ │ └── xref.md │ │ │ ├── errhndl │ │ │ ├── README.md │ │ │ ├── commerrs.md │ │ │ ├── errpatts.md │ │ │ ├── recstrat.md │ │ │ └── xref.md │ │ │ ├── hooks-ext │ │ │ ├── README.md │ │ │ ├── config.md │ │ │ ├── custcomp.md │ │ │ ├── hooksys.md │ │ │ ├── plugs.md │ │ │ └── xref.md │ │ │ ├── init-cfg │ │ │ ├── README.md │ │ │ ├── config.md │ │ │ ├── edgecases.md │ │ │ ├── errcond.md │ │ │ ├── examples.md │ │ │ ├── flow.md │ │ │ ├── fsops.md │ │ │ ├── funcs.md │ │ │ ├── state.md │ │ │ └── xref.md │ │ │ ├── intro │ │ │ ├── README.md │ │ │ ├── diag.md │ │ │ └── keycon.md │ │ │ ├── paths-dirs │ │ │ ├── README.md │ │ │ ├── codepaths.md │ │ │ ├── dirstruct.md │ │ │ ├── pathres.md │ │ │ └── xref.md │ │ │ ├── srcflcomp │ │ │ ├── README.md │ │ │ ├── comparch.md │ │ │ ├── config.md │ │ │ ├── edgecases.md │ │ │ ├── errcond.md │ │ │ ├── examples.md │ │ │ ├── flow.md │ │ │ ├── fsops.md │ │ │ ├── funcs.md │ │ │ ├── state.md │ │ │ └── xref.md │ │ │ └── statemgmt │ │ │ ├── README.md │ │ │ ├── appinfostruct.md │ │ │ ├── flow.md │ │ │ ├── funcs.md │ │ │ ├── statestruct.md │ │ │ └── xref.md │ │ └── rebar3_lfe │ │ ├── README.md │ │ ├── plugin │ │ ├── README.md │ │ ├── commands │ │ │ ├── README.md │ │ │ ├── cleanup │ │ │ │ ├── README.md │ │ │ │ ├── clean-all.md │ │ │ │ ├── clean-build.md │ │ │ │ ├── clean-cache.md │ │ │ │ └── clean.md │ │ │ ├── compiling-packages.md │ │ │ ├── compiling.md │ │ │ ├── projects │ │ │ │ ├── README.md │ │ │ │ ├── app.md │ │ │ │ ├── escript.md │ │ │ │ ├── lib.md │ │ │ │ ├── main.md │ │ │ │ └── release.md │ │ │ ├── repl.md │ │ │ ├── running │ │ │ │ ├── README.md │ │ │ │ ├── run-escript.md │ │ │ │ ├── run-release.md │ │ │ │ └── run.md │ │ │ ├── testing │ │ │ │ ├── README.md │ │ │ │ ├── ct.md │ │ │ │ ├── eunit.md │ │ │ │ └── ltest.md │ │ │ └── versions.md │ │ ├── images │ │ │ ├── cnbb-pub-logo-1.6.png │ │ │ ├── cover-large.jpg │ │ │ └── cover.jpg │ │ ├── intro │ │ │ ├── README.md │ │ │ ├── background.md │ │ │ └── features.md │ │ ├── redirects │ │ │ ├── docs.html │ │ │ └── mdbook.html │ │ └── setup │ │ │ ├── README.md │ │ │ ├── deps.md │ │ │ └── plugin.md │ │ └── quick-start │ │ ├── README.md │ │ ├── behind.md │ │ ├── code │ │ ├── README.md │ │ ├── msgs.md │ │ ├── repl.md │ │ └── sample.md │ │ ├── images │ │ ├── cnbb-pub-logo-1.6.png │ │ ├── cover-large.jpg │ │ └── cover.jpg │ │ ├── intro │ │ └── README.md │ │ ├── next.md │ │ ├── plaid.md │ │ ├── proj.md │ │ ├── redirects │ │ ├── docs.html │ │ ├── mdbook.html │ │ └── rebar3.html │ │ └── title.md ├── part7 │ ├── README.md │ ├── ai-resources │ │ ├── README.md │ │ ├── erlang-stdlib.md │ │ ├── lfe-stdlb.md │ │ ├── style-guide.md │ │ └── syntax-pocket-reference.md │ ├── code-of-conduct │ │ └── README.md │ └── style-guide │ │ ├── README.md │ │ ├── components │ │ ├── README.md │ │ ├── flow.md │ │ ├── funcs.md │ │ ├── libraries.md │ │ ├── modules.md │ │ └── projects.md │ │ ├── docs │ │ ├── README.md │ │ ├── comments.md │ │ ├── docstrings.md │ │ └── todos.md │ │ ├── errors │ │ └── README.md │ │ ├── format │ │ ├── README.md │ │ ├── headers.md │ │ ├── indent.md │ │ ├── line-len.md │ │ ├── spelling.md │ │ └── whtsp.md │ │ ├── images │ │ ├── cnbb-pub-logo-1.6.png │ │ ├── cover-large.jpg │ │ └── cover.jpg │ │ ├── intro │ │ └── README.md │ │ ├── names │ │ ├── README.md │ │ ├── globals.md │ │ ├── intent.md │ │ ├── mod-vars.md │ │ ├── predicates.md │ │ └── symbols.md │ │ ├── psm │ │ ├── README.md │ │ ├── messages.md │ │ ├── processes.md │ │ └── servers.md │ │ ├── redirects │ │ ├── docs.html │ │ ├── mdbook.html │ │ └── rebar3.html │ │ ├── repr │ │ ├── README.md │ │ ├── lists.md │ │ ├── maps.md │ │ ├── records.md │ │ └── tuples.md │ │ └── swe │ │ ├── README.md │ │ ├── architecture.md │ │ ├── principles.md │ │ └── priorities.md ├── part8 │ ├── README.md │ ├── arch │ │ ├── README.md │ │ ├── design.md │ │ ├── erl-lisps.md │ │ ├── high-level.md │ │ ├── key-find.md │ │ ├── matur.md │ │ └── what.md │ ├── comp-rel-grphs │ │ ├── README.md │ │ ├── arch-qual.md │ │ ├── comp-ord.md │ │ ├── comp-pipe.md │ │ ├── core-mod.md │ │ ├── core-periph.md │ │ ├── dep-impact.md │ │ ├── dep-metr.md │ │ ├── dep-vis-summ.md │ │ ├── high-level.md │ │ ├── mod-cats.md │ │ └── refac-opp.md │ ├── compat-layers │ │ ├── README.md │ │ ├── clojure.md │ │ ├── common-lisp.md │ │ ├── comp.md │ │ ├── design-pats.md │ │ ├── perf-consids.md │ │ ├── scheme.md │ │ └── summ.md │ ├── data-struct-cat │ │ ├── README.md │ │ ├── ast.md │ │ ├── compiler.md │ │ ├── cross-ref.md │ │ ├── design-rec.md │ │ ├── doc.md │ │ ├── env.md │ │ ├── key-take.md │ │ ├── mem-layout.md │ │ ├── perf-summ.md │ │ ├── runtime.md │ │ └── spec-purp.md │ ├── erl-int │ │ ├── README.md │ │ ├── build-sys.md │ │ ├── call-erl.md │ │ ├── call-lfe.md │ │ ├── mod-sys.md │ │ ├── otp-bhav.md │ │ ├── pats.md │ │ ├── perf-char.md │ │ ├── proc-mdl.md │ │ ├── rec-struc.md │ │ ├── tools.md │ │ └── type-sys.md │ ├── fut-dir │ │ ├── README.md │ │ ├── community.md │ │ ├── compat.md │ │ ├── ecosys.md │ │ ├── high-pri.md │ │ ├── impl-pri.md │ │ ├── key-take.md │ │ ├── low-pri.md │ │ ├── med-pri.md │ │ ├── risks.md │ │ └── tooling.md │ ├── idioms │ │ ├── README.md │ │ ├── anti-pats.md │ │ ├── arch-pats.md │ │ ├── code-org.md │ │ ├── comp-pats.md │ │ ├── erl-idioms.md │ │ ├── fp-idioms.md │ │ ├── key-take.md │ │ ├── pat-summ.md │ │ ├── perf-pats.md │ │ └── test-pats.md │ ├── lang-ref │ │ ├── README.md │ │ ├── adv-feat.md │ │ ├── adv-feat │ │ │ ├── README.md │ │ │ ├── docs.md │ │ │ ├── meta.md │ │ │ └── types.md │ │ ├── built-in.md │ │ ├── built-in │ │ │ ├── README.md │ │ │ ├── arith.md │ │ │ ├── binary.md │ │ │ ├── bool.md │ │ │ ├── lists.md │ │ │ ├── maps.md │ │ │ ├── pred.md │ │ │ ├── proc.md │ │ │ └── tuples.md │ │ ├── comp-matrx.md │ │ ├── data-types.md │ │ ├── data-types │ │ │ ├── README.md │ │ │ ├── comp.md │ │ │ ├── func.md │ │ │ ├── prim.md │ │ │ └── proc.md │ │ ├── macros.md │ │ ├── macros │ │ │ ├── README.md │ │ │ ├── bind.md │ │ │ ├── c-style.md │ │ │ ├── ctrl.md │ │ │ ├── def.md │ │ │ ├── func.md │ │ │ ├── list-comp.md │ │ │ └── ops.md │ │ ├── pat-match.md │ │ ├── pat-match │ │ │ ├── README.md │ │ │ ├── examples.md │ │ │ ├── guards.md │ │ │ └── types.md │ │ ├── special │ │ │ ├── README.md │ │ │ ├── appl.md │ │ │ ├── ctrl.md │ │ │ ├── data-constr.md │ │ │ └── func.md │ │ ├── sugar.md │ │ ├── sugar │ │ │ ├── README.md │ │ │ ├── hash.md │ │ │ ├── modfunc.md │ │ │ └── quote.md │ │ └── summ.md │ ├── mod-ref │ │ ├── README.md │ │ ├── comp-mods │ │ │ ├── README.md │ │ │ ├── abstract-code.md │ │ │ ├── codegen.md │ │ │ ├── codelift.md │ │ │ ├── comp.md │ │ │ ├── lint.md │ │ │ ├── macro-export.md │ │ │ ├── macro-include.md │ │ │ ├── macro-record.md │ │ │ ├── macro-struct.md │ │ │ ├── macro.md │ │ │ ├── parse.md │ │ │ ├── scan.md │ │ │ └── translate.md │ │ ├── doc-mods.md │ │ ├── doc-mods │ │ │ ├── README.md │ │ │ ├── gen.md │ │ │ └── shell.md │ │ ├── io-mods │ │ │ ├── README.md │ │ │ ├── io-format.md │ │ │ ├── io-pretty.md │ │ │ ├── io-write.md │ │ │ └── io.md │ │ ├── lib-mods.md │ │ ├── lib-mods │ │ │ ├── README.md │ │ │ ├── bits.md │ │ │ ├── cl.md │ │ │ ├── clj.md │ │ │ ├── gen.md │ │ │ ├── ms.md │ │ │ ├── qlc.md │ │ │ ├── scm.md │ │ │ ├── struc.md │ │ │ └── types.md │ │ ├── runtime-mods │ │ │ ├── README.md │ │ │ ├── eval-bits.md │ │ │ ├── eval.md │ │ │ ├── init.md │ │ │ └── lfescript.md │ │ ├── shell-mods │ │ │ ├── README.md │ │ │ ├── edlin-expan.md │ │ │ └── repl-impl.md │ │ ├── supp-mods.md │ │ └── supp-mods │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── env.md │ │ │ ├── error.md │ │ │ ├── intern.md │ │ │ └── util.md │ ├── perf-consids │ │ ├── README.md │ │ ├── bench.md │ │ ├── best-prac.md │ │ ├── comp-perf.md │ │ ├── comp.md │ │ ├── fut-work.md │ │ ├── hotspots.md │ │ ├── key-take.md │ │ ├── mem-usage.md │ │ ├── opt-opp.md │ │ └── runtime-perf.md │ ├── rsrs │ │ ├── README.md │ │ ├── add-rsrs.md │ │ ├── analysis.md │ │ ├── build-cmds.md │ │ ├── data-struct.md │ │ ├── file-org.md │ │ ├── gloss.md │ │ ├── mod-ref.md │ │ ├── pats-ref.md │ │ ├── perf-check.md │ │ ├── review-check.md │ │ └── test-check.md │ ├── sub-sys │ │ ├── README.md │ │ ├── comp-pipe.md │ │ ├── comp-pipe │ │ │ ├── README.md │ │ │ ├── codegen.md │ │ │ ├── docs.md │ │ │ ├── lint.md │ │ │ ├── macro.md │ │ │ ├── overview.md │ │ │ ├── parse.md │ │ │ ├── scan.md │ │ │ ├── trans-ex.md │ │ │ └── trans.md │ │ ├── macro-sys.md │ │ ├── macro-sys │ │ │ ├── README.md │ │ │ ├── built-in.md │ │ │ ├── design.md │ │ │ ├── expand.md │ │ │ ├── match-spec.md │ │ │ ├── patt.md │ │ │ ├── proc.md │ │ │ └── rec.md │ │ ├── run-sys.md │ │ └── run-sys │ │ │ ├── README.md │ │ │ ├── env.md │ │ │ ├── eval.md │ │ │ ├── overview.md │ │ │ └── shell.md │ ├── summ.md │ ├── test-qual │ │ ├── README.md │ │ ├── best-prac.md │ │ ├── comp-sim.md │ │ ├── examples.md │ │ ├── fut-test.md │ │ ├── infra-qual.md │ │ ├── known-issues.md │ │ ├── qa-proc.md │ │ ├── qual-metr.md │ │ ├── test-cov.md │ │ ├── test-exec.md │ │ ├── test-strat.md │ │ └── test-suite.md │ └── tooling │ │ ├── README.md │ │ ├── build-tool.md │ │ ├── debug-tools.md │ │ ├── doc-tools.md │ │ ├── editor.md │ │ ├── lfe.md │ │ ├── lfec.md │ │ ├── lfescript.md │ │ ├── prof-perf.md │ │ ├── summ.md │ │ └── test-tools.md ├── part9 │ └── README.md ├── preface │ ├── README.md │ ├── about-cover.md │ ├── acknowledgments.md │ ├── dedication.md │ └── forward.md └── redirects │ ├── docs.html │ ├── mdbook.html │ └── rebar3.html └── theme ├── LICENSE ├── README.md ├── book.js ├── css ├── chrome.css ├── general.css ├── print.css └── variables.css ├── favicon.png ├── favicon.svg ├── highlight.css └── highlight.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/book.toml -------------------------------------------------------------------------------- /css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/css/custom.css -------------------------------------------------------------------------------- /js/mermaid-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/js/mermaid-init.js -------------------------------------------------------------------------------- /js/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/js/mermaid.min.js -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/README.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/feedback.md -------------------------------------------------------------------------------- /src/fm/copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/fm/copyright.md -------------------------------------------------------------------------------- /src/fm/title-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/fm/title-page.md -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x1000-bold-black-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x1000-bold-black-solid.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x1000-bold-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x1000-bold-color.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x18-bold-black-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x18-bold-black-solid.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x18-bold-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x18-bold-black.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x24-bold-black-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x24-bold-black-solid.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x24-bold-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x24-bold-black.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x32-bold-black-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x32-bold-black-solid.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x32-bold-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x32-bold-black.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x500-bold-black-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x500-bold-black-solid.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x500-bold-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x500-bold-color.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x64-bold-black-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x64-bold-black-solid.png -------------------------------------------------------------------------------- /src/images/LiffyBot-5-x64-bold-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/LiffyBot-5-x64-bold-black.png -------------------------------------------------------------------------------- /src/images/chinuel-cover-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/chinuel-cover-bw.png -------------------------------------------------------------------------------- /src/images/chinuel-cover-full-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/chinuel-cover-full-color.png -------------------------------------------------------------------------------- /src/images/cnbb-pub-logo-1.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cnbb-pub-logo-1.6.png -------------------------------------------------------------------------------- /src/images/cover-all-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cover-all-large.jpg -------------------------------------------------------------------------------- /src/images/cover-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cover-all.jpg -------------------------------------------------------------------------------- /src/images/cover-back-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cover-back-large.jpg -------------------------------------------------------------------------------- /src/images/cover-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cover-back.jpg -------------------------------------------------------------------------------- /src/images/cover-binding-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cover-binding-large.jpg -------------------------------------------------------------------------------- /src/images/cover-binding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cover-binding.jpg -------------------------------------------------------------------------------- /src/images/cover-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cover-large.jpg -------------------------------------------------------------------------------- /src/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/images/cover.jpg -------------------------------------------------------------------------------- /src/part1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/README.md -------------------------------------------------------------------------------- /src/part1/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/README.md -------------------------------------------------------------------------------- /src/part1/intro/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/about.md -------------------------------------------------------------------------------- /src/part1/intro/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/conventions.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/README.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/api.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/cast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/cast.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/check.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/code.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/finishing-touches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/finishing-touches.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/input.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/integrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/integrate.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/planning.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/play.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/play.md -------------------------------------------------------------------------------- /src/part1/intro/guessing-game/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/guessing-game/review.md -------------------------------------------------------------------------------- /src/part1/intro/hw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/hw/README.md -------------------------------------------------------------------------------- /src/part1/intro/hw/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/hw/main.md -------------------------------------------------------------------------------- /src/part1/intro/hw/otp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/hw/otp.md -------------------------------------------------------------------------------- /src/part1/intro/hw/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/hw/repl.md -------------------------------------------------------------------------------- /src/part1/intro/prereq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/prereq.md -------------------------------------------------------------------------------- /src/part1/intro/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/intro/setup.md -------------------------------------------------------------------------------- /src/part1/repl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/README.md -------------------------------------------------------------------------------- /src/part1/repl/c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/c.md -------------------------------------------------------------------------------- /src/part1/repl/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/features.md -------------------------------------------------------------------------------- /src/part1/repl/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/files.md -------------------------------------------------------------------------------- /src/part1/repl/files/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/files/compile.md -------------------------------------------------------------------------------- /src/part1/repl/files/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/files/eval.md -------------------------------------------------------------------------------- /src/part1/repl/files/include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/files/include.md -------------------------------------------------------------------------------- /src/part1/repl/files/load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/files/load.md -------------------------------------------------------------------------------- /src/part1/repl/help-builtins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/help-builtins.md -------------------------------------------------------------------------------- /src/part1/repl/help-cmds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/help-cmds.md -------------------------------------------------------------------------------- /src/part1/repl/help-special-vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/help-special-vars.md -------------------------------------------------------------------------------- /src/part1/repl/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/help.md -------------------------------------------------------------------------------- /src/part1/repl/job-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/job-control.md -------------------------------------------------------------------------------- /src/part1/repl/readline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/readline.md -------------------------------------------------------------------------------- /src/part1/repl/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part1/repl/start.md -------------------------------------------------------------------------------- /src/part2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/README.md -------------------------------------------------------------------------------- /src/part2/arrays/README.md: -------------------------------------------------------------------------------- 1 | # Arrays 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/README.md -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/bifs/README.md -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/bit.md: -------------------------------------------------------------------------------- 1 | # bit-size: The Precise Measurer 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/byte.md: -------------------------------------------------------------------------------- 1 | # byte-size: The Measurer 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/list-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/bifs/list-to.md -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/bifs/split.md -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/term-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/bifs/term-to.md -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/to-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/bifs/to-list.md -------------------------------------------------------------------------------- /src/part2/byte-bin/bifs/to-term.md: -------------------------------------------------------------------------------- 1 | # binary-to-term: The Reanimator 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/README.md: -------------------------------------------------------------------------------- 1 | # Bit Syntax Fundamentals 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/combo.md: -------------------------------------------------------------------------------- 1 | # Combining Size and Type 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/defsize.md: -------------------------------------------------------------------------------- 1 | # Default Sizes 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/genform.md: -------------------------------------------------------------------------------- 1 | # The General Form 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/phil.md: -------------------------------------------------------------------------------- 1 | # Philosophical Implications 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/segs.md: -------------------------------------------------------------------------------- 1 | # Segments: The Atomic Unit 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/size.md: -------------------------------------------------------------------------------- 1 | # Size Specifications 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/types.md: -------------------------------------------------------------------------------- 1 | # Type Annotations 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bits/vars.md: -------------------------------------------------------------------------------- 1 | # Variables in Segments 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/README.md: -------------------------------------------------------------------------------- 1 | # Bitstrings 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/align.md: -------------------------------------------------------------------------------- 1 | # The Alignment Problem 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/append.md: -------------------------------------------------------------------------------- 1 | # Appending Bitstrings 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/create.md: -------------------------------------------------------------------------------- 1 | # Creating Bitstrings 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/ecode.md: -------------------------------------------------------------------------------- 1 | # Variable-Length Encoding Example 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/extract.md: -------------------------------------------------------------------------------- 1 | # Extracting Bits from Bytes 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/morse.md: -------------------------------------------------------------------------------- 1 | # Practical Example: Morse Code 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/patts.md: -------------------------------------------------------------------------------- 1 | # Pattern Matching Bitstrings 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/perf.md: -------------------------------------------------------------------------------- 1 | # Performance Characteristics 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/size.md: -------------------------------------------------------------------------------- 1 | # Size Queries 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/what.md: -------------------------------------------------------------------------------- 1 | # What Bitstrings Are 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/bitstrs/why.md: -------------------------------------------------------------------------------- 1 | # Why Bitstrings Matter 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/README.md: -------------------------------------------------------------------------------- 1 | # Binary Comprehensions 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/binbin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/comps/binbin.md -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/cartprod.md: -------------------------------------------------------------------------------- 1 | # Multiple Generators: The Cartesian Product 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/encode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/comps/encode.md -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/manip.md: -------------------------------------------------------------------------------- 1 | # Bit String Manipulation 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/perf.md: -------------------------------------------------------------------------------- 1 | # Performance Considerations 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/reverse.md: -------------------------------------------------------------------------------- 1 | # List to Binary: The Reverse Journey 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/rgb.md: -------------------------------------------------------------------------------- 1 | # Practical Example: RGB Color Manipulation 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/simple.md: -------------------------------------------------------------------------------- 1 | # Binary to List: The Simplest Case 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/syntx.md: -------------------------------------------------------------------------------- 1 | # The Basic Syntax 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/window.md: -------------------------------------------------------------------------------- 1 | # Advanced Pattern: Sliding Window 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/xform.md: -------------------------------------------------------------------------------- 1 | # Transforming Values 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/comps/xxx.md: -------------------------------------------------------------------------------- 1 | # Bit-Level Manipulation 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/concl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/concl/README.md -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/README.md: -------------------------------------------------------------------------------- 1 | # Endianness 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/examples.md: -------------------------------------------------------------------------------- 1 | # Practical Examples 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/hist.md: -------------------------------------------------------------------------------- 1 | # A Historical Note 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/lfe.md: -------------------------------------------------------------------------------- 1 | # The Endianness Specifiers in LFE 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/native.md: -------------------------------------------------------------------------------- 1 | # The Native Option: Runtime Flexibility 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/parable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/ends/parable.md -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/patts.md: -------------------------------------------------------------------------------- 1 | # Pattern Matching with Endianness 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/when.md: -------------------------------------------------------------------------------- 1 | # When Endianness Matters 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ends/xplat.md: -------------------------------------------------------------------------------- 1 | # Cross-Platform Binary Protocols 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/README.md: -------------------------------------------------------------------------------- 1 | # Bitwise Operators 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/and.md: -------------------------------------------------------------------------------- 1 | # Bitwise AND 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/bsl.md: -------------------------------------------------------------------------------- 1 | # Bit Shift Left 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/bsr.md: -------------------------------------------------------------------------------- 1 | # Bit Shift Right 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/combo.md: -------------------------------------------------------------------------------- 1 | # Combining Operators: Real-World Example 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/negs.md: -------------------------------------------------------------------------------- 1 | # A Note on Negative Numbers 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/not.md: -------------------------------------------------------------------------------- 1 | # Bitwise NOT 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/or.md: -------------------------------------------------------------------------------- 1 | # Bitwise OR 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/perf.md: -------------------------------------------------------------------------------- 1 | # Performance Characteristics 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/pract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/ops/pract.md -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/when.md: -------------------------------------------------------------------------------- 1 | # When to Use Bitwise Operators 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ops/xor.md: -------------------------------------------------------------------------------- 1 | # Bitwise XOR 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/README.md: -------------------------------------------------------------------------------- 1 | # Pattern Matching Binaries 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/basic.md: -------------------------------------------------------------------------------- 1 | # Basic Pattern Matching Examples 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/bits.md: -------------------------------------------------------------------------------- 1 | # Bit-Level Pattern Matching 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/funcls.md: -------------------------------------------------------------------------------- 1 | # Pattern Matching in Function Clauses 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/guards.md: -------------------------------------------------------------------------------- 1 | # Pattern Matching with Guards 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/pits.md: -------------------------------------------------------------------------------- 1 | # Common Pitfalls and How to Avoid Them 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/rest.md: -------------------------------------------------------------------------------- 1 | # The Rest of the Binary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/size.md: -------------------------------------------------------------------------------- 1 | # The Dual Nature of Size Variables 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/symm.md: -------------------------------------------------------------------------------- 1 | # The Fundamental Symmetry 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/tlv.md: -------------------------------------------------------------------------------- 1 | # Complex Real-World Example: Decoding a TLV Structure 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/patts/whatevs.md: -------------------------------------------------------------------------------- 1 | # Don't Care Variables 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/realwrld/README.md: -------------------------------------------------------------------------------- 1 | # Real-World Applications 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/README.md: -------------------------------------------------------------------------------- 1 | # Serialization 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/basics.md: -------------------------------------------------------------------------------- 1 | # The Basics 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/dist.md: -------------------------------------------------------------------------------- 1 | # The Distributed Angle: Cross-Node Communication 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/evo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/ser/evo.md -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/example.md: -------------------------------------------------------------------------------- 1 | # A More Sophisticated Example: The Deep Space Signal 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/pres.md: -------------------------------------------------------------------------------- 1 | # The Secret Sauce: What Gets Preserved 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/realwrld/custom.md: -------------------------------------------------------------------------------- 1 | # Example 2: Building a Custom Binary Protocol 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/realwrld/debug.md: -------------------------------------------------------------------------------- 1 | # Debugging Binary Code: When Patterns Don't Match 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/realwrld/ipv4.md: -------------------------------------------------------------------------------- 1 | # Example 1: Dissecting IPv4 Datagrams 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/realwrld/logform.md: -------------------------------------------------------------------------------- 1 | # Example 3: Log File Format with Binary Efficiency 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/realwrld/perf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/ser/realwrld/perf.md -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/realwrld/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/sec.md: -------------------------------------------------------------------------------- 1 | # Security Considerations: Trust No Binary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/sizecompe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/ser/sizecompe.md -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/stor.md: -------------------------------------------------------------------------------- 1 | # Storage Patterns: Files and Mnesia 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/ser/why.md: -------------------------------------------------------------------------------- 1 | # Why Serialize 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/README.md: -------------------------------------------------------------------------------- 1 | # Size and Unit Specifications 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/constr8.md: -------------------------------------------------------------------------------- 1 | # The Constraint of Divisibility by Eight 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/def.md: -------------------------------------------------------------------------------- 1 | # Default Sizes 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/example.md: -------------------------------------------------------------------------------- 1 | # Practical Example: Fixed-Width Records 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/patts.md: -------------------------------------------------------------------------------- 1 | # The Pattern Matching Constraint 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/sepcs.md: -------------------------------------------------------------------------------- 1 | # Explicit Size Specifications 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/utf.md: -------------------------------------------------------------------------------- 1 | # A Note on UTF Strings 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/sizes/xxx.md: -------------------------------------------------------------------------------- 1 | # The Unit Specification 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/README.md -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/bitstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/bitstr.md -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/effic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/effic.md -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/fundform.md: -------------------------------------------------------------------------------- 1 | # The Fundamental Form 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/lists.md -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/mixed.md -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/nested.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/nested.md -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/smplconstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/smplconstr.md -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/summ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/summ.md -------------------------------------------------------------------------------- /src/part2/byte-bin/syntax/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/syntax/vars.md -------------------------------------------------------------------------------- /src/part2/byte-bin/types/README.md: -------------------------------------------------------------------------------- 1 | # Type Specifiers 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/types/combo.md: -------------------------------------------------------------------------------- 1 | # Combining Specifiers 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/types/edge.md: -------------------------------------------------------------------------------- 1 | # Special Cases and Edge Conditions 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/types/ends.md: -------------------------------------------------------------------------------- 1 | # Endianness 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/types/sign.md: -------------------------------------------------------------------------------- 1 | # Sign 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/types/summ.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/types/units.md: -------------------------------------------------------------------------------- 1 | # The Unit Specifier 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/types/what.md: -------------------------------------------------------------------------------- 1 | # The Type Itself 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/what/README.md: -------------------------------------------------------------------------------- 1 | # What Binaries Are 2 | -------------------------------------------------------------------------------- /src/part2/byte-bin/what/beast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/what/beast.md -------------------------------------------------------------------------------- /src/part2/byte-bin/what/dstnct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/what/dstnct.md -------------------------------------------------------------------------------- /src/part2/byte-bin/what/immut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/what/immut.md -------------------------------------------------------------------------------- /src/part2/byte-bin/what/memrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/what/memrep.md -------------------------------------------------------------------------------- /src/part2/byte-bin/what/visrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/what/visrep.md -------------------------------------------------------------------------------- /src/part2/byte-bin/what/whynot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/byte-bin/what/whynot.md -------------------------------------------------------------------------------- /src/part2/chr-str/README.md: -------------------------------------------------------------------------------- 1 | # Characters and Strings 2 | -------------------------------------------------------------------------------- /src/part2/cons-cells/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/cons-cells/README.md -------------------------------------------------------------------------------- /src/part2/cons-cells/erlang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/cons-cells/erlang.md -------------------------------------------------------------------------------- /src/part2/cons-cells/lfe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/cons-cells/lfe.md -------------------------------------------------------------------------------- /src/part2/cons-cells/lisp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/cons-cells/lisp.md -------------------------------------------------------------------------------- /src/part2/data-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/data-types/README.md -------------------------------------------------------------------------------- /src/part2/data-types/atoms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/data-types/atoms.md -------------------------------------------------------------------------------- /src/part2/data-types/bools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/data-types/bools.md -------------------------------------------------------------------------------- /src/part2/data-types/chars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/data-types/chars.md -------------------------------------------------------------------------------- /src/part2/data-types/floats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/data-types/floats.md -------------------------------------------------------------------------------- /src/part2/data-types/integers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/data-types/integers.md -------------------------------------------------------------------------------- /src/part2/dicts/README.md: -------------------------------------------------------------------------------- 1 | # Dicts 2 | -------------------------------------------------------------------------------- /src/part2/gen-seq/README.md: -------------------------------------------------------------------------------- 1 | # Generic Sequence Functions 2 | -------------------------------------------------------------------------------- /src/part2/graphs/README.md: -------------------------------------------------------------------------------- 1 | # Graphs 2 | -------------------------------------------------------------------------------- /src/part2/lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/lists/README.md -------------------------------------------------------------------------------- /src/part2/lists/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/lists/lists.md -------------------------------------------------------------------------------- /src/part2/lists/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/lists/strings.md -------------------------------------------------------------------------------- /src/part2/mani-list/README.md: -------------------------------------------------------------------------------- 1 | # Manipulating List Structure 2 | -------------------------------------------------------------------------------- /src/part2/maps/README.md: -------------------------------------------------------------------------------- 1 | # Maps 2 | -------------------------------------------------------------------------------- /src/part2/patterns/README.md: -------------------------------------------------------------------------------- 1 | # Pattern Matching 2 | -------------------------------------------------------------------------------- /src/part2/proplists/README.md: -------------------------------------------------------------------------------- 1 | # Property Lists 2 | -------------------------------------------------------------------------------- /src/part2/queues/README.md: -------------------------------------------------------------------------------- 1 | # Queues 2 | -------------------------------------------------------------------------------- /src/part2/records/README.md: -------------------------------------------------------------------------------- 1 | # Records 2 | -------------------------------------------------------------------------------- /src/part2/tuples/README.md: -------------------------------------------------------------------------------- 1 | # Tuples 2 | -------------------------------------------------------------------------------- /src/part2/vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/vars/README.md -------------------------------------------------------------------------------- /src/part2/vars/bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/vars/bindings.md -------------------------------------------------------------------------------- /src/part2/vars/glob-revist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/vars/glob-revist.md -------------------------------------------------------------------------------- /src/part2/vars/patts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part2/vars/patts.md -------------------------------------------------------------------------------- /src/part3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part3/README.md -------------------------------------------------------------------------------- /src/part3/closures/README.md: -------------------------------------------------------------------------------- 1 | # Closures 2 | -------------------------------------------------------------------------------- /src/part3/eval/README.md: -------------------------------------------------------------------------------- 1 | # Evaluation 2 | -------------------------------------------------------------------------------- /src/part3/expressioins/README.md: -------------------------------------------------------------------------------- 1 | # Flow of Control 2 | -------------------------------------------------------------------------------- /src/part3/exprs/README.md: -------------------------------------------------------------------------------- 1 | # Expressions 2 | -------------------------------------------------------------------------------- /src/part3/files/README.md: -------------------------------------------------------------------------------- 1 | # Accessing Files 2 | -------------------------------------------------------------------------------- /src/part3/funs/README.md: -------------------------------------------------------------------------------- 1 | # Functions 2 | -------------------------------------------------------------------------------- /src/part3/io/README.md: -------------------------------------------------------------------------------- 1 | # I/O 2 | -------------------------------------------------------------------------------- /src/part3/modules/README.md: -------------------------------------------------------------------------------- 1 | # Modules 2 | -------------------------------------------------------------------------------- /src/part3/msgs/README.md: -------------------------------------------------------------------------------- 1 | # Messages and Their Passing 2 | -------------------------------------------------------------------------------- /src/part3/objects/README.md: -------------------------------------------------------------------------------- 1 | # Objects and Flavors 2 | -------------------------------------------------------------------------------- /src/part3/packages/README.md: -------------------------------------------------------------------------------- 1 | # Packages 2 | -------------------------------------------------------------------------------- /src/part3/processes/README.md: -------------------------------------------------------------------------------- 1 | # Processes 2 | -------------------------------------------------------------------------------- /src/part3/projects/README.md: -------------------------------------------------------------------------------- 1 | # Creating LFE Projects 2 | -------------------------------------------------------------------------------- /src/part3/projects/layout.md: -------------------------------------------------------------------------------- 1 | # Project Layout Conventions 2 | -------------------------------------------------------------------------------- /src/part3/projects/rebar3.md: -------------------------------------------------------------------------------- 1 | # Using rebar3 2 | -------------------------------------------------------------------------------- /src/part3/scripting/README.md: -------------------------------------------------------------------------------- 1 | # Scripting with LFE 2 | -------------------------------------------------------------------------------- /src/part4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part4/README.md -------------------------------------------------------------------------------- /src/part4/clients/REAEDME.md: -------------------------------------------------------------------------------- 1 | # Clients 2 | -------------------------------------------------------------------------------- /src/part4/compiler/README.md: -------------------------------------------------------------------------------- 1 | # The Compiler 2 | -------------------------------------------------------------------------------- /src/part4/ct/README.md: -------------------------------------------------------------------------------- 1 | # The Common Test Framework 2 | -------------------------------------------------------------------------------- /src/part4/dist/README.md: -------------------------------------------------------------------------------- 1 | # Distributed LFE 2 | -------------------------------------------------------------------------------- /src/part4/err-debug/README.md: -------------------------------------------------------------------------------- 1 | # Errors and Debugging 2 | -------------------------------------------------------------------------------- /src/part4/macros/README.md: -------------------------------------------------------------------------------- 1 | # Macros 2 | -------------------------------------------------------------------------------- /src/part4/ports/REAEDME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part4/ports/REAEDME.md -------------------------------------------------------------------------------- /src/part4/propr/README.md: -------------------------------------------------------------------------------- 1 | # The Propr Test Framework 2 | -------------------------------------------------------------------------------- /src/part4/servers/REAEDME.md: -------------------------------------------------------------------------------- 1 | # Servers 2 | -------------------------------------------------------------------------------- /src/part4/unit/README.md: -------------------------------------------------------------------------------- 1 | # Writing Unit Tests 2 | -------------------------------------------------------------------------------- /src/part5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part5/README.md -------------------------------------------------------------------------------- /src/part5/apps/README.md: -------------------------------------------------------------------------------- 1 | # Applications 2 | -------------------------------------------------------------------------------- /src/part5/behaviours/README.md: -------------------------------------------------------------------------------- 1 | # OTP Behaviours 2 | -------------------------------------------------------------------------------- /src/part5/data/README.md: -------------------------------------------------------------------------------- 1 | # Tables and Databases 2 | -------------------------------------------------------------------------------- /src/part5/project/README.md: -------------------------------------------------------------------------------- 1 | # Example OTP Project 2 | -------------------------------------------------------------------------------- /src/part5/rels/README.md: -------------------------------------------------------------------------------- 1 | # Releases 2 | -------------------------------------------------------------------------------- /src/part6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/README.md -------------------------------------------------------------------------------- /src/part6/tooling/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/edgecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/edgecases.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/errcond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/errcond.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/examples.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/fsops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/fsops.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/state.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appdisc/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appdisc/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/edgecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/edgecases.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/errcond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/errcond.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/examples.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/fsops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/fsops.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/state.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/appflgen/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/appflgen/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/advconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/advconfig.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/compop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/compop.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/configprec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/configprec.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/depconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/depconfig.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/dirconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/dirconfig.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/hookconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/hookconfig.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/profconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/profconfig.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/cfgref/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/cfgref/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/edgecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/edgecases.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/errcond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/errcond.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/examples.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/fsops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/fsops.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/state.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/comporddet/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/comporddet/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/edgecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/edgecases.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/errcond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/errcond.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/examples.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/fsops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/fsops.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/state.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depacq/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depacq/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/dagstrct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/dagstrct.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/edgecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/edgecases.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/errcond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/errcond.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/examples.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/fsops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/fsops.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/state.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depgrphmgmt/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depgrphmgmt/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/edgecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/edgecases.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/errcond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/errcond.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/examples.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/fsops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/fsops.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/state.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/depres-lock/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/depres-lock/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/errhndl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/errhndl/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/errhndl/commerrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/errhndl/commerrs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/errhndl/errpatts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/errhndl/errpatts.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/errhndl/recstrat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/errhndl/recstrat.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/errhndl/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/errhndl/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/hooks-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/hooks-ext/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/hooks-ext/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/hooks-ext/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/hooks-ext/custcomp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/hooks-ext/custcomp.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/hooks-ext/hooksys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/hooks-ext/hooksys.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/hooks-ext/plugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/hooks-ext/plugs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/hooks-ext/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/hooks-ext/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/edgecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/edgecases.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/errcond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/errcond.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/examples.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/fsops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/fsops.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/state.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/init-cfg/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/init-cfg/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/intro/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/intro/diag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/intro/diag.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/intro/keycon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/intro/keycon.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/paths-dirs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/paths-dirs/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/paths-dirs/codepaths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/paths-dirs/codepaths.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/paths-dirs/dirstruct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/paths-dirs/dirstruct.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/paths-dirs/pathres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/paths-dirs/pathres.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/paths-dirs/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/paths-dirs/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/comparch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/comparch.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/config.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/edgecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/edgecases.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/errcond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/errcond.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/examples.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/fsops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/fsops.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/state.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/srcflcomp/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/srcflcomp/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/statemgmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/statemgmt/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/statemgmt/appinfostruct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/statemgmt/appinfostruct.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/statemgmt/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/statemgmt/flow.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/statemgmt/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/statemgmt/funcs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/statemgmt/statestruct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/statemgmt/statestruct.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3/internals/statemgmt/xref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3/internals/statemgmt/xref.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/README.md: -------------------------------------------------------------------------------- 1 | # rebar3 2 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/README.md: -------------------------------------------------------------------------------- 1 | # Plugin Reference 2 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/clean-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/clean-all.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/clean-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/clean-build.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/clean-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/clean-cache.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/cleanup/clean.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/compiling-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/compiling-packages.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/compiling.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/projects/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/projects/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/projects/app.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/projects/escript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/projects/escript.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/projects/lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/projects/lib.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/projects/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/projects/main.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/projects/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/projects/release.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/repl.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/running/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/running/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/running/run-escript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/running/run-escript.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/running/run-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/running/run-release.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/running/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/running/run.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/testing/README.md: -------------------------------------------------------------------------------- 1 | # Testing 2 | 3 | [In progress] 4 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/testing/ct.md: -------------------------------------------------------------------------------- 1 | # Common Test 2 | 3 | [In progress] 4 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/testing/eunit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/testing/eunit.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/testing/ltest.md: -------------------------------------------------------------------------------- 1 | # ltest 2 | 3 | [In progress] 4 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/commands/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/commands/versions.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/images/cnbb-pub-logo-1.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/images/cnbb-pub-logo-1.6.png -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/images/cover-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/images/cover-large.jpg -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/images/cover.jpg -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/intro/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/intro/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/intro/background.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/intro/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/intro/features.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/redirects/docs.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/redirects/mdbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/redirects/mdbook.html -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/setup/README.md: -------------------------------------------------------------------------------- 1 | # Setup 2 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/setup/deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/setup/deps.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/plugin/setup/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/plugin/setup/plugin.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/README.md: -------------------------------------------------------------------------------- 1 | # Quick Start 2 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/behind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/behind.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/code/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/code/msgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/code/msgs.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/code/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/code/repl.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/code/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/code/sample.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/images/cnbb-pub-logo-1.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/images/cnbb-pub-logo-1.6.png -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/images/cover-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/images/cover-large.jpg -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/images/cover.jpg -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/intro/README.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/next.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/plaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/plaid.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/proj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/proj.md -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/redirects/docs.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/redirects/mdbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/redirects/mdbook.html -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/redirects/rebar3.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/part6/tooling/rebar3_lfe/quick-start/title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part6/tooling/rebar3_lfe/quick-start/title.md -------------------------------------------------------------------------------- /src/part7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/README.md -------------------------------------------------------------------------------- /src/part7/ai-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/ai-resources/README.md -------------------------------------------------------------------------------- /src/part7/ai-resources/erlang-stdlib.md: -------------------------------------------------------------------------------- 1 | # Erlang function inventory 2 | -------------------------------------------------------------------------------- /src/part7/ai-resources/lfe-stdlb.md: -------------------------------------------------------------------------------- 1 | # LFE function and macro inventory 2 | -------------------------------------------------------------------------------- /src/part7/ai-resources/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/ai-resources/style-guide.md -------------------------------------------------------------------------------- /src/part7/ai-resources/syntax-pocket-reference.md: -------------------------------------------------------------------------------- 1 | # LFE Pocket Reference 2 | -------------------------------------------------------------------------------- /src/part7/code-of-conduct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/code-of-conduct/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/README.md: -------------------------------------------------------------------------------- 1 | # Style Guide 2 | -------------------------------------------------------------------------------- /src/part7/style-guide/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/components/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/components/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/components/flow.md -------------------------------------------------------------------------------- /src/part7/style-guide/components/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/components/funcs.md -------------------------------------------------------------------------------- /src/part7/style-guide/components/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/components/libraries.md -------------------------------------------------------------------------------- /src/part7/style-guide/components/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/components/modules.md -------------------------------------------------------------------------------- /src/part7/style-guide/components/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/components/projects.md -------------------------------------------------------------------------------- /src/part7/style-guide/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/docs/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/docs/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/docs/comments.md -------------------------------------------------------------------------------- /src/part7/style-guide/docs/docstrings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/docs/docstrings.md -------------------------------------------------------------------------------- /src/part7/style-guide/docs/todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/docs/todos.md -------------------------------------------------------------------------------- /src/part7/style-guide/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/errors/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/format/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/format/headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/format/headers.md -------------------------------------------------------------------------------- /src/part7/style-guide/format/indent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/format/indent.md -------------------------------------------------------------------------------- /src/part7/style-guide/format/line-len.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/format/line-len.md -------------------------------------------------------------------------------- /src/part7/style-guide/format/spelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/format/spelling.md -------------------------------------------------------------------------------- /src/part7/style-guide/format/whtsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/format/whtsp.md -------------------------------------------------------------------------------- /src/part7/style-guide/images/cnbb-pub-logo-1.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/images/cnbb-pub-logo-1.6.png -------------------------------------------------------------------------------- /src/part7/style-guide/images/cover-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/images/cover-large.jpg -------------------------------------------------------------------------------- /src/part7/style-guide/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/images/cover.jpg -------------------------------------------------------------------------------- /src/part7/style-guide/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/intro/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/names/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/names/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/names/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/names/globals.md -------------------------------------------------------------------------------- /src/part7/style-guide/names/intent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/names/intent.md -------------------------------------------------------------------------------- /src/part7/style-guide/names/mod-vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/names/mod-vars.md -------------------------------------------------------------------------------- /src/part7/style-guide/names/predicates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/names/predicates.md -------------------------------------------------------------------------------- /src/part7/style-guide/names/symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/names/symbols.md -------------------------------------------------------------------------------- /src/part7/style-guide/psm/README.md: -------------------------------------------------------------------------------- 1 | # Processes, Servers and Messages 2 | -------------------------------------------------------------------------------- /src/part7/style-guide/psm/messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/psm/messages.md -------------------------------------------------------------------------------- /src/part7/style-guide/psm/processes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/psm/processes.md -------------------------------------------------------------------------------- /src/part7/style-guide/psm/servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/psm/servers.md -------------------------------------------------------------------------------- /src/part7/style-guide/redirects/docs.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/part7/style-guide/redirects/mdbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/redirects/mdbook.html -------------------------------------------------------------------------------- /src/part7/style-guide/redirects/rebar3.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/part7/style-guide/repr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/repr/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/repr/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/repr/lists.md -------------------------------------------------------------------------------- /src/part7/style-guide/repr/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/repr/maps.md -------------------------------------------------------------------------------- /src/part7/style-guide/repr/records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/repr/records.md -------------------------------------------------------------------------------- /src/part7/style-guide/repr/tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/repr/tuples.md -------------------------------------------------------------------------------- /src/part7/style-guide/swe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/swe/README.md -------------------------------------------------------------------------------- /src/part7/style-guide/swe/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/swe/architecture.md -------------------------------------------------------------------------------- /src/part7/style-guide/swe/principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/swe/principles.md -------------------------------------------------------------------------------- /src/part7/style-guide/swe/priorities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part7/style-guide/swe/priorities.md -------------------------------------------------------------------------------- /src/part8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/README.md -------------------------------------------------------------------------------- /src/part8/arch/README.md: -------------------------------------------------------------------------------- 1 | # LFE Architecture 2 | -------------------------------------------------------------------------------- /src/part8/arch/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/arch/design.md -------------------------------------------------------------------------------- /src/part8/arch/erl-lisps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/arch/erl-lisps.md -------------------------------------------------------------------------------- /src/part8/arch/high-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/arch/high-level.md -------------------------------------------------------------------------------- /src/part8/arch/key-find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/arch/key-find.md -------------------------------------------------------------------------------- /src/part8/arch/matur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/arch/matur.md -------------------------------------------------------------------------------- /src/part8/arch/what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/arch/what.md -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/README.md: -------------------------------------------------------------------------------- 1 | # Component Relationship Graphs 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/arch-qual.md: -------------------------------------------------------------------------------- 1 | # Architecture Quality Assessment 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/comp-ord.md: -------------------------------------------------------------------------------- 1 | # Compilation Order 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/comp-pipe.md: -------------------------------------------------------------------------------- 1 | # Compiler Pipeline Dependencies 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/core-mod.md: -------------------------------------------------------------------------------- 1 | # Core Module Dependencies 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/core-periph.md: -------------------------------------------------------------------------------- 1 | # Core vs Periphery 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/dep-impact.md: -------------------------------------------------------------------------------- 1 | # Dependency Impact Analysis 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/dep-metr.md: -------------------------------------------------------------------------------- 1 | # Dependency Metrics 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/dep-vis-summ.md: -------------------------------------------------------------------------------- 1 | # Dependency Visualization Summary 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/high-level.md: -------------------------------------------------------------------------------- 1 | # High-Level Architecture Layers 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/mod-cats.md: -------------------------------------------------------------------------------- 1 | # Module Categories by Coupling 2 | -------------------------------------------------------------------------------- /src/part8/comp-rel-grphs/refac-opp.md: -------------------------------------------------------------------------------- 1 | # Refactoring Opportunities 2 | -------------------------------------------------------------------------------- /src/part8/compat-layers/README.md: -------------------------------------------------------------------------------- 1 | # Compatibility Layers 2 | -------------------------------------------------------------------------------- /src/part8/compat-layers/clojure.md: -------------------------------------------------------------------------------- 1 | # Clojure Compatibility 2 | -------------------------------------------------------------------------------- /src/part8/compat-layers/common-lisp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/compat-layers/common-lisp.md -------------------------------------------------------------------------------- /src/part8/compat-layers/comp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/compat-layers/comp.md -------------------------------------------------------------------------------- /src/part8/compat-layers/design-pats.md: -------------------------------------------------------------------------------- 1 | # Design Patterns 2 | -------------------------------------------------------------------------------- /src/part8/compat-layers/perf-consids.md: -------------------------------------------------------------------------------- 1 | # Performance Considerations 2 | -------------------------------------------------------------------------------- /src/part8/compat-layers/scheme.md: -------------------------------------------------------------------------------- 1 | # Scheme Compatibility 2 | -------------------------------------------------------------------------------- /src/part8/compat-layers/summ.md: -------------------------------------------------------------------------------- 1 | # Compatibility Summary 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/README.md: -------------------------------------------------------------------------------- 1 | # Data Structure Catalog 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/ast.md: -------------------------------------------------------------------------------- 1 | # Abstract Syntax Trees 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/compiler.md: -------------------------------------------------------------------------------- 1 | # Compiler Data Structures 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/cross-ref.md: -------------------------------------------------------------------------------- 1 | # Cross-Reference with Source 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/design-rec.md: -------------------------------------------------------------------------------- 1 | # Design Recommendations 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/doc.md: -------------------------------------------------------------------------------- 1 | # Documentation Structures 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/env.md: -------------------------------------------------------------------------------- 1 | # Environment Structures 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/key-take.md: -------------------------------------------------------------------------------- 1 | # Key Takeaways 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/mem-layout.md: -------------------------------------------------------------------------------- 1 | # Memory Layout Considerations 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/perf-summ.md: -------------------------------------------------------------------------------- 1 | # Data Structure Performance Summary 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/runtime.md: -------------------------------------------------------------------------------- 1 | # Runtime Data Structures 2 | -------------------------------------------------------------------------------- /src/part8/data-struct-cat/spec-purp.md: -------------------------------------------------------------------------------- 1 | # Special Purpose Structures 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/erl-int/README.md -------------------------------------------------------------------------------- /src/part8/erl-int/build-sys.md: -------------------------------------------------------------------------------- 1 | # Build System Integration 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/call-erl.md: -------------------------------------------------------------------------------- 1 | # Calling Erlang from LFE 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/call-lfe.md: -------------------------------------------------------------------------------- 1 | # Calling LFE from Erlang 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/mod-sys.md: -------------------------------------------------------------------------------- 1 | # Module System Integration 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/otp-bhav.md: -------------------------------------------------------------------------------- 1 | # OTP Behaviors 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/pats.md: -------------------------------------------------------------------------------- 1 | # Integration Patterns 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/perf-char.md: -------------------------------------------------------------------------------- 1 | # Performance Characteristics 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/proc-mdl.md: -------------------------------------------------------------------------------- 1 | # Process Model Integration 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/rec-struc.md: -------------------------------------------------------------------------------- 1 | # Records and Structs 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/tools.md: -------------------------------------------------------------------------------- 1 | # Debug Info and Tool Integration 2 | -------------------------------------------------------------------------------- /src/part8/erl-int/type-sys.md: -------------------------------------------------------------------------------- 1 | # Type System Integration 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/README.md: -------------------------------------------------------------------------------- 1 | # Future Directions 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/community.md: -------------------------------------------------------------------------------- 1 | # Community & Governance 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/compat.md: -------------------------------------------------------------------------------- 1 | # Compatibility & Standards 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/ecosys.md: -------------------------------------------------------------------------------- 1 | # Ecosystem Enhancements 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/high-pri.md: -------------------------------------------------------------------------------- 1 | # High Priority Enhancements 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/impl-pri.md: -------------------------------------------------------------------------------- 1 | # Implementation Priorities 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/key-take.md: -------------------------------------------------------------------------------- 1 | # Key Takeaways 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/low-pri.md: -------------------------------------------------------------------------------- 1 | # Low Priority / Opportunistic 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/med-pri.md: -------------------------------------------------------------------------------- 1 | # Medium Priority Enhancements 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/risks.md: -------------------------------------------------------------------------------- 1 | # Risks & Mitigation 2 | -------------------------------------------------------------------------------- /src/part8/fut-dir/tooling.md: -------------------------------------------------------------------------------- 1 | # Tooling Ecosystem 2 | -------------------------------------------------------------------------------- /src/part8/idioms/README.md: -------------------------------------------------------------------------------- 1 | # Design Patterns & Idioms 2 | -------------------------------------------------------------------------------- /src/part8/idioms/anti-pats.md: -------------------------------------------------------------------------------- 1 | # Anti-Patterns to Avoid 2 | -------------------------------------------------------------------------------- /src/part8/idioms/arch-pats.md: -------------------------------------------------------------------------------- 1 | # Architectural Patterns 2 | -------------------------------------------------------------------------------- /src/part8/idioms/code-org.md: -------------------------------------------------------------------------------- 1 | # Code Organization Patterns 2 | -------------------------------------------------------------------------------- /src/part8/idioms/comp-pats.md: -------------------------------------------------------------------------------- 1 | # Compiler Construction Patterns 2 | -------------------------------------------------------------------------------- /src/part8/idioms/erl-idioms.md: -------------------------------------------------------------------------------- 1 | # Erlang-Specific Idioms 2 | -------------------------------------------------------------------------------- /src/part8/idioms/fp-idioms.md: -------------------------------------------------------------------------------- 1 | # Functional Programming Idioms 2 | -------------------------------------------------------------------------------- /src/part8/idioms/key-take.md: -------------------------------------------------------------------------------- 1 | # Key Takeaways 2 | -------------------------------------------------------------------------------- /src/part8/idioms/pat-summ.md: -------------------------------------------------------------------------------- 1 | # Pattern Summary 2 | -------------------------------------------------------------------------------- /src/part8/idioms/perf-pats.md: -------------------------------------------------------------------------------- 1 | # Performance Patterns 2 | -------------------------------------------------------------------------------- /src/part8/idioms/test-pats.md: -------------------------------------------------------------------------------- 1 | # Testing Patterns 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/README.md -------------------------------------------------------------------------------- /src/part8/lang-ref/adv-feat.md: -------------------------------------------------------------------------------- 1 | # Advanced Features 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/adv-feat/README.md: -------------------------------------------------------------------------------- 1 | # Advanced Features 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/adv-feat/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/adv-feat/docs.md -------------------------------------------------------------------------------- /src/part8/lang-ref/adv-feat/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/adv-feat/meta.md -------------------------------------------------------------------------------- /src/part8/lang-ref/adv-feat/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/adv-feat/types.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in.md: -------------------------------------------------------------------------------- 1 | # Built-in Functions 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/README.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/arith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/arith.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/binary.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/bool.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/lists.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/maps.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/pred.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/pred.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/proc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/proc.md -------------------------------------------------------------------------------- /src/part8/lang-ref/built-in/tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/built-in/tuples.md -------------------------------------------------------------------------------- /src/part8/lang-ref/comp-matrx.md: -------------------------------------------------------------------------------- 1 | # Feature Comparison Matrix 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/data-types.md: -------------------------------------------------------------------------------- 1 | # Data Types 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/data-types/README.md: -------------------------------------------------------------------------------- 1 | # Data Types 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/data-types/comp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/data-types/comp.md -------------------------------------------------------------------------------- /src/part8/lang-ref/data-types/func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/data-types/func.md -------------------------------------------------------------------------------- /src/part8/lang-ref/data-types/prim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/data-types/prim.md -------------------------------------------------------------------------------- /src/part8/lang-ref/data-types/proc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/data-types/proc.md -------------------------------------------------------------------------------- /src/part8/lang-ref/macros.md: -------------------------------------------------------------------------------- 1 | # Macros 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/macros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/macros/README.md -------------------------------------------------------------------------------- /src/part8/lang-ref/macros/bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/macros/bind.md -------------------------------------------------------------------------------- /src/part8/lang-ref/macros/c-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/macros/c-style.md -------------------------------------------------------------------------------- /src/part8/lang-ref/macros/ctrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/macros/ctrl.md -------------------------------------------------------------------------------- /src/part8/lang-ref/macros/def.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/macros/def.md -------------------------------------------------------------------------------- /src/part8/lang-ref/macros/func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/macros/func.md -------------------------------------------------------------------------------- /src/part8/lang-ref/macros/list-comp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/macros/list-comp.md -------------------------------------------------------------------------------- /src/part8/lang-ref/macros/ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/macros/ops.md -------------------------------------------------------------------------------- /src/part8/lang-ref/pat-match.md: -------------------------------------------------------------------------------- 1 | # Pattern Matching 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/pat-match/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/pat-match/README.md -------------------------------------------------------------------------------- /src/part8/lang-ref/pat-match/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/pat-match/examples.md -------------------------------------------------------------------------------- /src/part8/lang-ref/pat-match/guards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/pat-match/guards.md -------------------------------------------------------------------------------- /src/part8/lang-ref/pat-match/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/pat-match/types.md -------------------------------------------------------------------------------- /src/part8/lang-ref/special/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/special/README.md -------------------------------------------------------------------------------- /src/part8/lang-ref/special/appl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/special/appl.md -------------------------------------------------------------------------------- /src/part8/lang-ref/special/ctrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/special/ctrl.md -------------------------------------------------------------------------------- /src/part8/lang-ref/special/data-constr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/special/data-constr.md -------------------------------------------------------------------------------- /src/part8/lang-ref/special/func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/special/func.md -------------------------------------------------------------------------------- /src/part8/lang-ref/sugar.md: -------------------------------------------------------------------------------- 1 | # Syntactic Sugar and Shorthands 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/sugar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/lang-ref/sugar/README.md -------------------------------------------------------------------------------- /src/part8/lang-ref/sugar/hash.md: -------------------------------------------------------------------------------- 1 | # Hash Forms 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/sugar/modfunc.md: -------------------------------------------------------------------------------- 1 | # Module Call Syntax 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/sugar/quote.md: -------------------------------------------------------------------------------- 1 | # Quote Forms 2 | -------------------------------------------------------------------------------- /src/part8/lang-ref/summ.md: -------------------------------------------------------------------------------- 1 | # Complete Language Feature Summary 2 | -------------------------------------------------------------------------------- /src/part8/mod-ref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/README.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/README.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/abstract-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/abstract-code.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/codegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/codegen.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/codelift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/codelift.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/comp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/comp.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/lint.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/macro-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/macro-export.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/macro-include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/macro-include.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/macro-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/macro-record.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/macro-struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/macro-struct.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/macro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/macro.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/parse.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/scan.md -------------------------------------------------------------------------------- /src/part8/mod-ref/comp-mods/translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/comp-mods/translate.md -------------------------------------------------------------------------------- /src/part8/mod-ref/doc-mods.md: -------------------------------------------------------------------------------- 1 | # Documentation Modules 2 | -------------------------------------------------------------------------------- /src/part8/mod-ref/doc-mods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/doc-mods/README.md -------------------------------------------------------------------------------- /src/part8/mod-ref/doc-mods/gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/doc-mods/gen.md -------------------------------------------------------------------------------- /src/part8/mod-ref/doc-mods/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/doc-mods/shell.md -------------------------------------------------------------------------------- /src/part8/mod-ref/io-mods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/io-mods/README.md -------------------------------------------------------------------------------- /src/part8/mod-ref/io-mods/io-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/io-mods/io-format.md -------------------------------------------------------------------------------- /src/part8/mod-ref/io-mods/io-pretty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/io-mods/io-pretty.md -------------------------------------------------------------------------------- /src/part8/mod-ref/io-mods/io-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/io-mods/io-write.md -------------------------------------------------------------------------------- /src/part8/mod-ref/io-mods/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/io-mods/io.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods.md: -------------------------------------------------------------------------------- 1 | # Library Modules 2 | -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/README.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/bits.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/cl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/cl.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/clj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/clj.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/gen.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/ms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/ms.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/qlc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/qlc.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/scm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/scm.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/struc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/struc.md -------------------------------------------------------------------------------- /src/part8/mod-ref/lib-mods/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/lib-mods/types.md -------------------------------------------------------------------------------- /src/part8/mod-ref/runtime-mods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/runtime-mods/README.md -------------------------------------------------------------------------------- /src/part8/mod-ref/runtime-mods/eval-bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/runtime-mods/eval-bits.md -------------------------------------------------------------------------------- /src/part8/mod-ref/runtime-mods/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/runtime-mods/eval.md -------------------------------------------------------------------------------- /src/part8/mod-ref/runtime-mods/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/runtime-mods/init.md -------------------------------------------------------------------------------- /src/part8/mod-ref/runtime-mods/lfescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/runtime-mods/lfescript.md -------------------------------------------------------------------------------- /src/part8/mod-ref/shell-mods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/shell-mods/README.md -------------------------------------------------------------------------------- /src/part8/mod-ref/shell-mods/edlin-expan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/shell-mods/edlin-expan.md -------------------------------------------------------------------------------- /src/part8/mod-ref/shell-mods/repl-impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/shell-mods/repl-impl.md -------------------------------------------------------------------------------- /src/part8/mod-ref/supp-mods.md: -------------------------------------------------------------------------------- 1 | # Support Utilities 2 | -------------------------------------------------------------------------------- /src/part8/mod-ref/supp-mods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/supp-mods/README.md -------------------------------------------------------------------------------- /src/part8/mod-ref/supp-mods/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/supp-mods/api.md -------------------------------------------------------------------------------- /src/part8/mod-ref/supp-mods/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/supp-mods/env.md -------------------------------------------------------------------------------- /src/part8/mod-ref/supp-mods/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/supp-mods/error.md -------------------------------------------------------------------------------- /src/part8/mod-ref/supp-mods/intern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/supp-mods/intern.md -------------------------------------------------------------------------------- /src/part8/mod-ref/supp-mods/util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/mod-ref/supp-mods/util.md -------------------------------------------------------------------------------- /src/part8/perf-consids/README.md: -------------------------------------------------------------------------------- 1 | # Performance Considerations 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/bench.md: -------------------------------------------------------------------------------- 1 | # Benchmarking 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/best-prac.md: -------------------------------------------------------------------------------- 1 | # Performance Best Practices 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/comp-perf.md: -------------------------------------------------------------------------------- 1 | # Compilation Performance 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/comp.md: -------------------------------------------------------------------------------- 1 | # Performance Comparison 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/fut-work.md: -------------------------------------------------------------------------------- 1 | # Future Performance Work 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/hotspots.md: -------------------------------------------------------------------------------- 1 | # Performance Hotspots 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/key-take.md: -------------------------------------------------------------------------------- 1 | # Key Takeaways 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/mem-usage.md: -------------------------------------------------------------------------------- 1 | # Memory Usage 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/opt-opp.md: -------------------------------------------------------------------------------- 1 | # Optimization Opportunities 2 | -------------------------------------------------------------------------------- /src/part8/perf-consids/runtime-perf.md: -------------------------------------------------------------------------------- 1 | # Runtime Performance 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/README.md: -------------------------------------------------------------------------------- 1 | # Resources 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/add-rsrs.md: -------------------------------------------------------------------------------- 1 | # Additional Resources 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/analysis.md: -------------------------------------------------------------------------------- 1 | # Analysis Methodology 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/build-cmds.md: -------------------------------------------------------------------------------- 1 | # Build & Tooling Commands 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/data-struct.md: -------------------------------------------------------------------------------- 1 | # Key Data Structures Reference 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/file-org.md: -------------------------------------------------------------------------------- 1 | # File Organization 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/gloss.md: -------------------------------------------------------------------------------- 1 | # Glossary 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/mod-ref.md: -------------------------------------------------------------------------------- 1 | # Complete Module Reference 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/pats-ref.md: -------------------------------------------------------------------------------- 1 | # Common Patterns Quick Reference 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/perf-check.md: -------------------------------------------------------------------------------- 1 | # Performance Tuning Checklist 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/review-check.md: -------------------------------------------------------------------------------- 1 | # Code Review Checklist 2 | -------------------------------------------------------------------------------- /src/part8/rsrs/test-check.md: -------------------------------------------------------------------------------- 1 | # Testing Checklist 2 | -------------------------------------------------------------------------------- /src/part8/sub-sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/README.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe.md: -------------------------------------------------------------------------------- 1 | # Compilation Pipeline 2 | -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/README.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/codegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/codegen.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/docs.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/lint.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/macro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/macro.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/overview.md: -------------------------------------------------------------------------------- 1 | # Pipeline Overview and Data Flow 2 | -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/parse.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/scan.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/trans-ex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/trans-ex.md -------------------------------------------------------------------------------- /src/part8/sub-sys/comp-pipe/trans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/comp-pipe/trans.md -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys.md: -------------------------------------------------------------------------------- 1 | # Macro System 2 | -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/macro-sys/README.md -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys/built-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/macro-sys/built-in.md -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys/design.md: -------------------------------------------------------------------------------- 1 | # Macro System Design Philosophy 2 | -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys/expand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/macro-sys/expand.md -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys/match-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/macro-sys/match-spec.md -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys/patt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/macro-sys/patt.md -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys/proc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/macro-sys/proc.md -------------------------------------------------------------------------------- /src/part8/sub-sys/macro-sys/rec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/macro-sys/rec.md -------------------------------------------------------------------------------- /src/part8/sub-sys/run-sys.md: -------------------------------------------------------------------------------- 1 | # Runtime System 2 | -------------------------------------------------------------------------------- /src/part8/sub-sys/run-sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/run-sys/README.md -------------------------------------------------------------------------------- /src/part8/sub-sys/run-sys/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/run-sys/env.md -------------------------------------------------------------------------------- /src/part8/sub-sys/run-sys/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/run-sys/eval.md -------------------------------------------------------------------------------- /src/part8/sub-sys/run-sys/overview.md: -------------------------------------------------------------------------------- 1 | # Runtime Architecture Overview 2 | -------------------------------------------------------------------------------- /src/part8/sub-sys/run-sys/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/sub-sys/run-sys/shell.md -------------------------------------------------------------------------------- /src/part8/summ.md: -------------------------------------------------------------------------------- 1 | # Integration Summary 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/README.md: -------------------------------------------------------------------------------- 1 | # Testing & Quality 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/best-prac.md: -------------------------------------------------------------------------------- 1 | # Testing Best Practices 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/comp-sim.md: -------------------------------------------------------------------------------- 1 | # Comparison with Similar Projects 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/examples.md: -------------------------------------------------------------------------------- 1 | # Example Programs 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/fut-test.md: -------------------------------------------------------------------------------- 1 | # Future Testing Enhancements 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/infra-qual.md: -------------------------------------------------------------------------------- 1 | # Testing Infrastructure Quality 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/known-issues.md: -------------------------------------------------------------------------------- 1 | # Known Issues & Technical Debt 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/qa-proc.md: -------------------------------------------------------------------------------- 1 | # Quality Assurance Process 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/qual-metr.md: -------------------------------------------------------------------------------- 1 | # Quality Metrics 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/test-cov.md: -------------------------------------------------------------------------------- 1 | # Test Coverage Analysis 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/test-exec.md: -------------------------------------------------------------------------------- 1 | # Test Execution 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/test-strat.md: -------------------------------------------------------------------------------- 1 | # Testing Strategies 2 | -------------------------------------------------------------------------------- /src/part8/test-qual/test-suite.md: -------------------------------------------------------------------------------- 1 | # Test Suite Organization 2 | -------------------------------------------------------------------------------- /src/part8/tooling/README.md: -------------------------------------------------------------------------------- 1 | # Tooling 2 | -------------------------------------------------------------------------------- /src/part8/tooling/build-tool.md: -------------------------------------------------------------------------------- 1 | # Build Tool Integration 2 | -------------------------------------------------------------------------------- /src/part8/tooling/debug-tools.md: -------------------------------------------------------------------------------- 1 | # Debugging Tools 2 | -------------------------------------------------------------------------------- /src/part8/tooling/doc-tools.md: -------------------------------------------------------------------------------- 1 | # Documentation Tools 2 | -------------------------------------------------------------------------------- /src/part8/tooling/editor.md: -------------------------------------------------------------------------------- 1 | # Editor Support 2 | -------------------------------------------------------------------------------- /src/part8/tooling/lfe.md: -------------------------------------------------------------------------------- 1 | # lfe - The REPL 2 | -------------------------------------------------------------------------------- /src/part8/tooling/lfec.md: -------------------------------------------------------------------------------- 1 | # lfec - The Compiler 2 | -------------------------------------------------------------------------------- /src/part8/tooling/lfescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part8/tooling/lfescript.md -------------------------------------------------------------------------------- /src/part8/tooling/prof-perf.md: -------------------------------------------------------------------------------- 1 | # Profiling and Performance 2 | -------------------------------------------------------------------------------- /src/part8/tooling/summ.md: -------------------------------------------------------------------------------- 1 | # Tooling Summary 2 | -------------------------------------------------------------------------------- /src/part8/tooling/test-tools.md: -------------------------------------------------------------------------------- 1 | # Testing Tools 2 | -------------------------------------------------------------------------------- /src/part9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/part9/README.md -------------------------------------------------------------------------------- /src/preface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/preface/README.md -------------------------------------------------------------------------------- /src/preface/about-cover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/preface/about-cover.md -------------------------------------------------------------------------------- /src/preface/acknowledgments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/preface/acknowledgments.md -------------------------------------------------------------------------------- /src/preface/dedication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/preface/dedication.md -------------------------------------------------------------------------------- /src/preface/forward.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/preface/forward.md -------------------------------------------------------------------------------- /src/redirects/docs.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/redirects/mdbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/src/redirects/mdbook.html -------------------------------------------------------------------------------- /src/redirects/rebar3.html: -------------------------------------------------------------------------------- 1 | # LFE rebar3 Plugin 2 | -------------------------------------------------------------------------------- /theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/LICENSE -------------------------------------------------------------------------------- /theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/README.md -------------------------------------------------------------------------------- /theme/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/book.js -------------------------------------------------------------------------------- /theme/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/css/chrome.css -------------------------------------------------------------------------------- /theme/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/css/general.css -------------------------------------------------------------------------------- /theme/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/css/print.css -------------------------------------------------------------------------------- /theme/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/css/variables.css -------------------------------------------------------------------------------- /theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/favicon.png -------------------------------------------------------------------------------- /theme/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/favicon.svg -------------------------------------------------------------------------------- /theme/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/highlight.css -------------------------------------------------------------------------------- /theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnbbooks/lfe-manual/HEAD/theme/highlight.js --------------------------------------------------------------------------------