Elixir v1.1.0 Kernel.Typespec

Provides macros and functions for working with typespecs.

Elixir comes with a notation for declaring types and specifications. Elixir is dynamically typed, as such typespecs are never used by the compiler to optimize or modify code. Still, using typespecs is useful as documentation and tools such as Dialyzer can analyze the code with typespecs to find bugs.

The attributes @type, @opaque, @typep, @spec, @callback and @macrocallback available in modules are handled by the equivalent macros defined by this module. See sub-sections “Defining a type” and “Defining a specification” below.

Types and their syntax

The type syntax provided by Elixir is fairly similar to the one in Erlang.

Most of the built-in types provided in Erlang (for example, pid()) are expressed the same way: pid() or simply pid. Parameterized types are also supported (list(integer)) and so are remote types (Enum.t).

Integers and atom literals are allowed as types (ex. 1, :atom or false). All other types are built of unions of predefined types. Certain shorthands are allowed, such as [...], <<>> and {...}.

Basic types

type :: any()                   # the top type, the set of all terms
      | none()                  # the bottom type, contains no terms
      | pid()
      | port()
      | reference()
      | tuple()
      | atom()
      | integer()
      | non_neg_integer()       # 0, 1, 2, 3, ...
      | pos_integer()           # 1, 2, 3, ...
      | neg_integer()           # ..., -3, -2, -1
      | float()
      | map()
      | struct()
      | list(type)
      | nonempty_list(type)
      | improper_list(type1, type2)
      | maybe_improper_list(type1, type2)
      | Literals                # Described in section "Literals"
      | Builtin                 # Described in section "Builtin-types"
      | Remotes                 # Described in section "Remotes"

Literals

The following literals are also supported in typespecs:

type :: :atom                         ## Atoms
      | 1                             ## Integers
      | 1..10                         ## Integers from 1 to 10
      | 1.0                           ## Floats

      | <<>>                          ## Bitstrings
      | <<_ :: size>>                 # size is 0 or a positive integer
      | <<_ :: _ * unit>>             # unit is an integer from 1 to 256
      | <<_ :: size * unit>>

      | [type]                        ## Lists
      | []                            # empty list
      | [...]                         # shorthand for nonempty_list(any())
      | [type, ...]                   # shorthand for nonempty_list(type)
      | [key: type]                   # keyword lists

      | (... -> type)                 ## Functions
      | (... -> type)                 # any arity, returns type
      | (() -> type)                  # 0-arity, returns type
      | (type1, type2 -> type)        # 2-arity, returns type

      | %{}                           ## Maps
      | %{key: type}                  # map with key :key with value of type
      | %{type1 => type2}             # map with keys of type1 with values of type2
      | %SomeStruct{}
      | %SomeStruct{key: type}

      | {}                            ## Tuples
      | {:ok, type}                   # two element tuple with an atom and any type

Built-in types

Those types are also provided by Elixir as shortcuts on top of the basic and literal types.

Built-in typeDefined as
term()any()
binary()<< _ :: _ * 8 >>
bitstring()<< _ :: _ * 1 >>
boolean()false | true
byte()0..255
char()0..0x10ffff
number()integer() | float()
char_list()[char()]
list()[any()]
maybe_improper_list()maybe_improper_list(any(), any())
nonempty_list()nonempty_list(any())
iodata()iolist() | binary()
iolist()maybe_improper_list(byte() | binary() | iolist(), binary() | [])
module()atom() | tuple()
arity()0..255
mfa(){atom(), atom(), arity()}
node()atom()
timeout():infinity | non_neg_integer()
no_return()none()
fun()(... -> any)
struct()%{__struct__: atom()}

Remote types

Any module is also able to define their own type and the modules in Elixir are no exception. For example, a string is String.t, a range is Range.t, any enumerable can be Enum.t and so on.

Defining a type

@type type_name :: type
@typep type_name :: type
@opaque type_name :: type

A type defined with @typep is private. An opaque type, defined with @opaque is a type where the internal structure of the type will not be visible, but the type is still public.

Types can be parameterized by defining variables as parameters, these variables can then be used to define the type.

@type dict(key, value) :: [{key, value}]

Defining a specification

@spec function_name(type1, type2) :: return_type
@callback function_name(type1, type2) :: return_type
@macrocallback macro_name(type1, type2) :: Macro.t

Callbacks are used to define the callbacks functions of behaviours (see Behaviour).

Guards can be used to restrict type variables given as arguments to the function.

@spec function(arg) :: [arg] when arg: atom

Type variables with no restriction can also be defined.

@spec function(arg) :: [arg] when arg: var

Specifications can be overloaded just like ordinary functions.

@spec function(integer) :: atom
@spec function(atom)    :: integer

Notes

Elixir discourages the use of type string as it might be confused with binaries which are referred to as “strings” in Elixir (as opposed to character lists). In order to use the type that is called string in Erlang, one has to use the char_list type which is a synonym for string. If you use string, you’ll get a warning from the compiler.

If you want to refer to the “string” type (the one operated on by functions in the String module), use String.t type instead.

Summary

Functions

Returns all callbacks available from the module’s beam code

Returns all specs available from the module’s beam code

Returns all types available from the module’s beam code

Defines a spec by receiving a typespec expression

Defines a type, typep or opaque by receiving a typespec expression

Returns true if the current module defines a callback. This function is only available for modules being compiled

Returns true if the current module defines a given spec. This function is only available for modules being compiled

Returns true if the current module defines a given type (private, opaque or not). This function is only available for modules being compiled

Converts a spec clause back to Elixir AST

Converts a type clause back to Elixir AST

Macros

Defines a callback. This macro is responsible for handling the attribute @callback

Defines a macro callback. This macro is responsible for handling the attribute @macrocallback

Defines an opaque type. This macro is responsible for handling the attribute @opaque

Defines a spec. This macro is responsible for handling the attribute @spec

Defines a type. This macro is responsible for handling the attribute @type

Defines a private type. This macro is responsible for handling the attribute @typep

Functions

beam_callbacks(module)

Specs

beam_callbacks(module | binary) :: [tuple] | nil

Returns all callbacks available from the module’s beam code.

The result is returned as a list of tuples where the first element is spec name and arity and the second is the spec.

The module must have a corresponding beam file which can be located by the runtime system.

beam_specs(module)

Specs

beam_specs(module | binary) :: [tuple] | nil

Returns all specs available from the module’s beam code.

The result is returned as a list of tuples where the first element is spec name and arity and the second is the spec.

The module must have a corresponding beam file which can be located by the runtime system.

beam_types(module)

Specs

beam_types(module | binary) :: [tuple] | nil

Returns all types available from the module’s beam code.

The result is returned as a list of tuples where the first element is the type (:typep, :type and :opaque).

The module must have a corresponding beam file which can be located by the runtime system.

define_spec(kind, expr, env)

Defines a spec by receiving a typespec expression.

define_type(kind, expr, doc \\ nil, env)

Defines a type, typep or opaque by receiving a typespec expression.

defines_callback?(module, name, arity)

Returns true if the current module defines a callback. This function is only available for modules being compiled.

defines_spec?(module, name, arity)

Returns true if the current module defines a given spec. This function is only available for modules being compiled.

defines_type?(module, name, arity)

Returns true if the current module defines a given type (private, opaque or not). This function is only available for modules being compiled.

spec_to_ast(name, spec)

Converts a spec clause back to Elixir AST.

type_to_ast(type)

Converts a type clause back to Elixir AST.

Macros

defcallback(spec)

Defines a callback. This macro is responsible for handling the attribute @callback.

Examples

@callback add(number, number) :: number
defmacrocallback(spec)

Defines a macro callback. This macro is responsible for handling the attribute @macrocallback.

Examples

@macrocallback add(number, number) :: Macro.t
defopaque(type)

Defines an opaque type. This macro is responsible for handling the attribute @opaque.

Examples

@opaque my_type :: atom
defspec(spec)

Defines a spec. This macro is responsible for handling the attribute @spec.

Examples

@spec add(number, number) :: number
deftype(type)

Defines a type. This macro is responsible for handling the attribute @type.

Examples

@type my_type :: atom
deftypep(type)

Defines a private type. This macro is responsible for handling the attribute @typep.

Examples

@typep my_type :: atom