Open daniel-v opened 6 years ago
Cool project! I can see myself using it. One of the things I ran into when testing things was that pesky s.
s
We have things that look like this:
members = object.decodeObjects("members", () => Person()); manager = object.decodeObject("manager", () => Person());
As it turns out, I am a functional analphabet and that extra s to indicate that we are talking about an interable skipped me. I think I would have spotted my error if the indication was much more explicit. Something like object.decodeObjectList
object.decodeObjectList
What do you think?
Sure. I think having both and having one proxy into another is ok.
Cool project! I can see myself using it. One of the things I ran into when testing things was that pesky
s
.We have things that look like this:
As it turns out, I am a functional analphabet and that extra
s
to indicate that we are talking about an interable skipped me. I think I would have spotted my error if the indication was much more explicit. Something likeobject.decodeObjectList
What do you think?