Cindiary / elm-not-empty / NotEmpty

Module with aliases for the different collection types so you can type

foo : NotEmpty.List Int

instead of

foo : NotEmpty.List.List Int


type alias List a =
List a

Alias for NotEmpty.List.List


type alias Array a =
Array a

Alias for NotEmpty.Array.Array


type alias Dict key value =
Dict key value

Alias for NotEmpty.Dict.Dict


type alias Set a =
Set a

Alias for NotEmpty.Set.Set


type alias String =
String

Alias for NotEmpty.String.String