Last week I experimented with elms (they consider me a novice) and wondered about the following,
I have defined several types of Foo and Bar, for example, with a date field.
type alias Foo =
{
date : String,
check : Bool
}
and
type alias Bar =
{
date : String,
check : Bool,
text : String
}
Is it possible to combine and sort both lists with sorting? ( sort ) I would like to do this to create one list to represent all the elements.
Thanks!
source
share