On this page:
2.1 Overview
2.2 Installation
2.3 Using Qi
2.4 Using Qi as a Dependency
2.5 Relationship to the Threading Macro

2 Introduction and Usage🔗ℹ

    2.1 Overview

    2.2 Installation

    2.3 Using Qi

    2.4 Using Qi as a Dependency

    2.5 Relationship to the Threading Macro

2.1 Overview🔗ℹ

One way to structure computations – the one we typically employ when writing functions in Racket or another programming language – is as a flowchart, with arrows representing transitions of control, indicating the sequence in which actions are performed. Aside from the implied ordering, the actions are independent of one another and could be anything at all. Another way – provided by the present module – is to structure computations as a fluid flow, like a flow of energy, electricity passing through a circuit, streams flowing around rocks. Here, arrows represent that actions feed into one another.

The former way is often necessary when writing functions at a low level, where the devil is in the details. But once these functional building blocks are available, the latter model is often more appropriate, allowing us to compose functions at a high level to derive complex and robust functional pipelines from simple components with a minimum of repetition and boilerplate, engendering effortless clarity.

Here are some examples of computing with Qi using flows:

> (require qi)
> (map ( (~> sqr add1)) (list 1 2 3))

'(2 5 10)

> (filter ( (< 5 _ 10)) (list 3 7 9 12))

'(7 9)

> (~> (3 4) (>< sqr) +)

25

> (switch (2 3)
    [> -]
    [< +])

5

> (define-flow root-mean-square
    (~>  (>< sqr) (-< + count) / sqrt))
> (root-mean-square (range 10))

5.338539126015656

Qi is especially useful for expressing computations in a functional, immutable style, and embedding such computations anywhere in the source program, and when working with multiple values.

Examples:
> (require qi racket/list)
> (define-flow (list-insert xs i v)
    (~> (group 2 split-at list)
        (select 1 3 2) append))
> (split-at '(a b d) 2)

'(a b)

'(d)

> (list-insert '(a b d) 2 'c)

'(a b c d)

2.2 Installation🔗ℹ

Qi is a hosted language on the Racket platform. If you don’t already have Racket installed, you will need to install it. Then, install Qi at the command line using:

raco pkg install qi

Qi is designed to be used in tandem with a host language, such as Racket itself. To use it in a Racket module, simply (require qi).

2.3 Using Qi🔗ℹ

Qi may be used in normal (e.g. Racket) code by employing an appropriate interface form. These forms embed the Qi language into the host language, that is, they allow you to use Qi anywhere in your program, and provide shorthands for common cases.

Since some of the forms use and favor unicode characters (while also providing plain-English aliases), see Input Methods for tips on entering these characters. Otherwise, if you’re all set, head on over to the tutorial.

2.4 Using Qi as a Dependency🔗ℹ

Qi follows the composable package organization scheme, so that you typically only need to depend on qi-lib in your application or library. The qi-lib package entails just those dependencies used in the Qi language itself, rather than those used in tests, benchmarking, documentation, etc. All of those dependencies are encapsulated in separate packages such as qi-test, qi-doc, qi-sdk, and more. This ensures that using Qi as a dependency contributes minimal overhead to your build times.

Additionally, Qi itself uses few and carefully benchmarked dependencies, so that the load-time overhead of (require qi) is minimal.

2.5 Relationship to the Threading Macro🔗ℹ

The usual threading macro in Threading Macros is a purely syntactic transformation that does not make any assumptions about the expressions being threaded through, so that it works out of the box for threading values through both functions as well as macros. On the other hand, Qi is primarily oriented around functions, and flows are expected to be function-valued. Threading values through macros using Qi requires special handling.

In the most common case where you are threading functions, Qi’s threading form ~> is a more general version, and almost drop-in alternative, to the usual threading macro. You might consider migrating to Qi if you need to thread more than one argument or would like to make more pervasive use of flow-oriented reasoning. To do so, the only change that would be needed is to wrap the input argument in parentheses. This is necessary in order to be unambiguous since Qi’s threading form can thread more than one argument.

For macros, we cannot use them naively as flows because macros expect all of their "arguments" to be provided syntactically at compile time – meaning that the number of arguments must be known at compile time. This is not in general possible with Qi since flows may consume and produce an arbitrary number of values, and this number is only determined at runtime. Depending on what you are trying to do, however, there are many ways in which you still can treat macros as flows in Qi – from simple escapes into Racket to more structured approaches including writing a Qi dialect.

The threading library also provides numerous shorthands for common cases, many of which don’t have equivalents in Qi – if you’d like to have these, please create an issue on the source repo to register your interest.

Finally, by virtue of having an optimizing compiler, Qi also offers performance benefits in some cases, including for use of sequences of standard functional operations on lists like map and filter, which in Qi avoid constructing intermediate representations along the way to generating the final result.