diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-16 20:03:04 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-16 20:03:04 -0700 |
commit | 1d2967e74413dc45bd298de7c9a9bf9f72d9ca02 (patch) | |
tree | 0589046238440ece37c55ab6e057498afe4f886a /lisplib.c | |
parent | 91fb2910f7cae2ebb36de0b871bc3b2e3f7a74eb (diff) | |
download | txr-1d2967e74413dc45bd298de7c9a9bf9f72d9ca02.tar.gz txr-1d2967e74413dc45bd298de7c9a9bf9f72d9ca02.tar.bz2 txr-1d2967e74413dc45bd298de7c9a9bf9f72d9ca02.zip |
New macro: flow.
There has been interest in the community in a threading macro;
a triviality which which applies the opip syntax to a value.
Eschewing unusual glyph combinations like ->> and whatnot,
I've chosen the English word flow for this.
* share/txr/stdlib/op.tl (flow): New macro.
* lisplib.c (op_set_entries): Set up autoload for flow.
* txr.1: Documented.
* share/txr/stdlib/doc-syms.tl: Updated.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -763,7 +763,7 @@ static val op_set_entries(val dlt, val fun) val name[] = { lit("op"), lit("do"), lit("lop"), lit("ldo"), lit("ap"), lit("ip"), lit("ado"), lit("ido"), lit("ret"), lit("aret"), - lit("opip"), lit("oand"), + lit("opip"), lit("oand"), lit("flow"), nil }; set_dlt_entries(dlt, name, fun); |