-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seq API parsing issue #268
Comments
@marcelocantos can you help to confirm? |
Not a bug, all empty sets are the same. |
The suggested change would make it easier to implement the given functions under normal circumstances. However, since all empty sets are identical (that is, there is only one kind of empty set), the expressions |
`(v: <value>)` may be used in some cases to encode arbitrarily-typed values (a play on the `%v` verb in Go string templating).
1.With code
//seq.join(",",{})
and//seq.join(",",[])
, both{}
and[]
are parsed to rel.GenericSet, I think[]
should be pared to rel.Array.2.With code
//seq.join(",",["", "", ""])
,""
is parsed to rel.GenericSet too,""
should be parsed to rel.String.The text was updated successfully, but these errors were encountered: