franckverrot / core

Elm's core libraries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Elm Core Libraries

Build Status

Every Elm project needs the core libraries. They provide basic functionality including:

  • The Basics — addition, subtraction, etc.
  • Data Structures — lists, dictionaries, sets, etc.

Default Imports

In all Elm files there is a small set of default imports:

import Basics exposing (..)
import Debug
import List exposing ( List, (::) )
import Maybe exposing ( Maybe( Just, Nothing ) )
import Result exposing ( Result( Ok, Err ) )
import Platform exposing ( Program )
import Platform.Cmd exposing ( Cmd, (!) )
import Platform.Sub exposing ( Sub )

The intention is to include things that are both extremely useful and very unlikely to overlap with anything that anyone will ever write in a library. By keeping the set of default imports small, it also becomes easier to use whatever version of map suits your fancy. Finally, it makes it easier to figure out where the heck a function is coming from.

About

Elm's core libraries

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Elm 72.7%Language:JavaScript 27.1%Language:Shell 0.2%