"Piping" is a term used in _functional_ programming languages. It's basically about taking the output of one function and loading passing it (or "piping" it) to another. This can be done (and **is** done, in functional languages) ad infinitum. ![[Pasted image 20240717140224.png]] The "Builder" [[Code Design Patterns]] allows you to do something kind of similar syntactically with object orient coding. **** # More ## Source - self ## Related