Clojure Quick Reference¶
The basic Clojure syntax and a few common functions you should probably learn first.
The examples are editable (using an embedded REPL) so feel free to experiment and watch as the return value changes as you change the code. Reload the page if you want to reset all the code back to the starting point.
Install Clojure on your computer if you want to experiment even further.
Want to go deeper already?
Watch the Clojure language video series by Brian Will for a detailed introduction to key parts of the language. Or discover Clojure core functions by completing challenges on 4Clojure.org and then watching how Practicalli solved them.
Calling functions¶
The first element in a list, (), is a call to a function. Any other elements are passed to the function as arguments. The examples show how to call functions with multiple arguments.
Construct a string from strings and return value of a function
Prefix notation and parens
Hugging code with () is a simple syntax to define the scope of code expressions. No additional ;, , or spaces are required.
Treating the first element of a list as a function call is referred to as prefix notation, which greatly simplifies Clojure syntax. Prefix notation makes mathematical expressions completely deterministic, eliminating the need for operator precedence.
Understanding functions¶
clojure.repl/doc function returns the doc-string of the given function. A doc-string should be part of all public function definitions.
Clojure editors should provide commands to view doc-strings and the ability to jump to function definitions to view their source code
Modeling data with Collection types¶
Clojure has 4 main collection types, all immutable (cannot change once created) and can contain any Clojure types.
A list, (), used for calling functions and representing sequences. A linked list for sequential access.
Compose a string from strings an a function return value
A vector, [], used for simple collections of values. An indexed data structure for random access
A map, {}, use for descriptive data collections. An associative data structure for value lookup by unique keys (also known as a dictionary).
A hash-map - key value pairs
A set, #{}, contains a unique set of values. Sets can be used to test if a value is contained within a collection
Collections are Persistent data types
List, Vector, Hash-map and Set are immutable values and cannot be changed.
When a function transforms the contents of a collection, a new structure is returned which shares all the unchanged values from the original collection.
The sharing approach is called persistent data types and enables immutable data to be used efficiently.
Using data structures¶
Using the map and inc function, increment all the numbers in a vector
The above map function is roughly equivalent to the following expression
The conj function creates a new sequenct by combining one or more values.
map reduce filter are common functions for iterating through a collection / sequence of values
Many Clojure core functions for collections
map, reduce, apply, filter, remove are just a few examples of Clojure core functions that work with data structures.
Defining custom functions¶
Define a function to calculate the square of a given number
Function definitions can also be used within other expressions, useful for mapping custom functions over a collection
Defining local names¶
Use the let function as a simple way to experiment with code designs
Create local binding to hold the result of each function
Define local names to remove duplication in function definitions, or to simplify algorithms
Define a function and call with a value
Defining names for values (vars)¶
A name bound to a value can be used to represent that value throughout the code. Names can be bound to simple values (numbers, strings, etc.), collections or even function calls.
def binds a name to a value with the scope of the current namespace. def is useful for data that is passed to multiple functions within a namespace.
Evaluating a name will return the value it is bound to.
Define a data structure to be shared within the namespace
def for shared values, let for locally scoped values
let function is used to bind names to values locally, such as within a function definition. Names bound with def have namespace scope so can be used with any code in that namespace.
Iterating over collections¶
map iterates a function over a collection of values, returning a new collection of values
reduce iterates a function over the values of a collection to produce a new result
Reducing functions are function definitions used by the reduce function over a collection
Use a reducing function over a collection, with an initial start value
Functions can call themselves to iterate over a collection. Using a lazy sequence means only the required numbers are generated, ensuring efficiency of operation and making the function usable in many different scenarios.
Define a function to calculate a fibonacci sequence
Host Interoperability¶
The REPL in this web page is running inside a JavaScript engine, so JavaScript functions can be used from within ClojureScript code
Clojure uses the Java Virtual Machine as its host, so can call all the classes and methods from the Java language. Libraries can also be imported from any JVM language, e.g. Java, Groovy, Jython, Jruby, etc.
ClojureScript is the Clojure language that runs in JavaScript environments, e.g. a browser JavaScript engine, node.js
Java libraries in Clojure
java.lang library is available in Clojure by default
Next steps¶
Install Clojure on your computer if you want to experiment even further or keep on reading more about Clojure.