Tacit Primes?

For users of dfns, both novice and expert
JohnS|Dyalog

Re: Tacit Primes?

Post by JohnS|Dyalog »

There's a "muse" near the top of http://dfns.dyalog.com/n_tacit.htm, which tries to explain my current take on it. Other people's opinions may vary.
mwr0707
Posts: 17
Joined: Wed Oct 28, 2015 9:49 am

Re: Tacit Primes?

Post by mwr0707 »

For me, it's functional pipelines built from a palette of small, limited scope, (Note John's muse) re-usable plug-and-play components a-la *nix shell and graphical data integration tools:

From an example by PSkocik:

Code: Select all

find /usr/bin/ |                #produce 
sed 's:.*/::'  |                #translate: strip directory part
grep -i '^z'   |                #filter   : select items starting with z
xargs -d '\n' aFinalConsumer    #consume
alexeyv
Posts: 56
Joined: Tue Nov 17, 2015 4:18 pm

Re: Tacit Primes?

Post by alexeyv »

Strangely enough full tacit version is longer than dfns-version.
Post Reply