elixir / 1.13.4 / list.chars.html /

List.Chars protocol

The List.Chars protocol is responsible for converting a structure to a charlist (only if applicable).

The only function that must be implemented is to_charlist/1 which does the conversion.

The to_charlist/1 function automatically imported by Kernel invokes this protocol.

Summary

Types

t()

Functions

to_charlist(term)

Converts term to a charlist.

Types

t()Source

@type t() :: term()

Functions

to_charlist(term)Source

@spec to_charlist(t()) :: charlist()

Converts term to a charlist.

© 2012 Plataformatec
Licensed under the Apache License, Version 2.0.
https://hexdocs.pm/elixir/1.13.4/List.Chars.html