# Intl v0.2.0 - Table of Contents

> An Elixir interface to internationalization functions modelled on the JavaScript Intl API. Delegates to the Localize library for locale-aware formatting of numbers, dates, lists, durations, and more.

## Pages

- [Intl](readme.md)
- [LICENSE](license.md)
- [Changelog](changelog.md)

- Guides
  - [JavaScript Intl vs Localize: Functional Comparison](comparison_with_localize.md)
  - [Intl API Compatibility](compatibility.md)
  - [Getting Started](getting_started.md)

## Modules

- [Intl](Intl.md): An Elixir interface to internationalization functions modelled on the
[JavaScript Intl API](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl).

- Formatting
  - [Intl.DateTimeFormat](Intl.DateTimeFormat.md): Locale-sensitive date and time formatting, modelled on
[`Intl.DateTimeFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat).
  - [Intl.DurationFormat](Intl.DurationFormat.md): Locale-sensitive duration formatting, modelled on
[`Intl.DurationFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DurationFormat).
  - [Intl.ListFormat](Intl.ListFormat.md): Locale-sensitive list formatting, modelled on
[`Intl.ListFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat).
  - [Intl.NumberFormat](Intl.NumberFormat.md): Locale-sensitive number formatting, modelled on
[`Intl.NumberFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat).
  - [Intl.RelativeTimeFormat](Intl.RelativeTimeFormat.md): Locale-sensitive relative time formatting, modelled on
[`Intl.RelativeTimeFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat).

- Display Names
  - [Intl.DisplayNames](Intl.DisplayNames.md): Locale-sensitive display name resolution, modelled on
[`Intl.DisplayNames`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames).

- Linguistic
  - [Intl.Collator](Intl.Collator.md): Locale-sensitive string comparison, modelled on
[`Intl.Collator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator).
  - [Intl.PluralRules](Intl.PluralRules.md): Plural-sensitive number categorization, modelled on
[`Intl.PluralRules`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/PluralRules).
  - [Intl.Segmenter](Intl.Segmenter.md): Text segmentation, modelled on
[`Intl.Segmenter`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter).

