Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-20 Thread Max Goldstein
@art, I disagree about adding arbitrary expressions between { and |. You should use a let-binding for something like *Array.get (offset + i) arrayOfRecords |> Maybe.withDefault defaultRecord*. I know this is supposed to be pain points, not solutions, I'm going to try to coalesce some of the

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-19 Thread art yerkes
It's not a huge deal but other strongly typed languages definitely allow arbitrary expressions in record update syntax. # type t = { a : int ; b : float } ;; type t = { a : int; b : float; } # let emptyT () = { a = 1 ; b = 3.0 } ;; val emptyT : unit -> t = # let x = { (emptyT ()) with a = 7

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-18 Thread Mark Hamburg
I just had a senior engineer on my team ask me whether it was really the case that putting a qualified name or a field access into the beginning of a record update would fail to compile. His examples were much like the other examples from this thread, but I'm noting this here to make clear that

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-10 Thread 'Andrew Radford' via Elm Discuss
Great post Mark - I've been working on a project lately and setters are fast becoming my #1 pain. I can relate to every one of those points you outlined, and you said it better than I could. On Thursday, March 9, 2017 at 11:09:22 PM UTC, Mark Hamburg wrote: > > I got asked for non

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-09 Thread Mark Hamburg
I got asked for non obfuscated/simplified examples, so let me run through some more realistic code. I would pull from our own codebase but we've often contorted ourselves away from these patterns because they are so ugly so I can't just grab existing code. Imagine having a style element that

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-09 Thread Brian Hicks
Martin, Mark: do you have concrete examples of painful record updates? It sounds like with the thought you're putting into this, surely you're experiencing some significant pain. Examples, the more real the better, would be super! If you have suggestions, it would be more helpful to spin off a

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-06 Thread Michael Jones
Nothing special and I'm a beginner so I might be doing something stupid but I'm attempting to have some nested data in my model and this is the current state of one of my update functions which is fairly painful. update : Business.LocationList.Model.Msg -> Model -> ( Model, Cmd

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-03 Thread Richard Feldman
On Friday, March 3, 2017 at 8:45:01 AM UTC-8, Mark Hamburg wrote: > > Our codebase suffers from this as well. > Mark, can you post some examples of painful code? As in, not just what you wanted to write but couldn't, but what you ended up writing that's still painful. Real code is much more

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-03 Thread Mark Hamburg
Our codebase suffers from this as well. And unlike what one of the follow ups noted, this isn't an issue of wanting to add fields. Rather, it's an issue of not being able to use an expression in the first part of the record update. In this case, one doesn't even need a general expression but

Re: [elm-discuss] Re: Post Examples of Painful Record Updates Here!

2017-03-03 Thread Richard Feldman
Can we express these in terms of examples of real-world code that is currently painful? That's really the key here. :) On Fri, Mar 3, 2017, 4:18 AM 'Rupert Smith' via Elm Discuss < elm-discuss@googlegroups.com> wrote: > Another one I have run into, is when selecting just one field from a >