开源软件名称(OpenSource Name):elm/core开源软件地址(OpenSource Url):https://github.com/elm/core开源编程语言(OpenSource Language):Elm 84.8%开源软件介绍(OpenSource Introduction):Core LibrariesEvery Elm project needs this package! It provides basic functionality like addition and subtraction as well as data structures like lists, dictionaries, and sets.
Default ImportsThe modules in this package are so common, that some of them are imported by default in all Elm files. So it is as if every Elm file starts with these imports: import Basics exposing (..)
import List exposing (List, (::))
import Maybe exposing (Maybe(..))
import Result exposing (Result(..))
import String exposing (String)
import Char exposing (Char)
import Tuple
import Debug
import Platform exposing (Program)
import Platform.Cmd as Cmd exposing (Cmd)
import Platform.Sub as 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 relatively small, it also becomes easier to use whatever version of |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论