We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
take the following object
type Struct struct { foo int bar string slice []string
and I have two instances
a := Struct{ foo: 1 bar: "foobar" slice: ["a","b","c"] } b := Struct{ foo: 1 bar: "foobar" slice: ["c","b","a"] }
what modifiers do I need to add so that Struct.slice ignores order?
What if I have a parent struct
type Parent struct { anotherSlice []string child Struct }
and anotherSlice requires strict order but child.slice does not?
anotherSlice
child.slice
The text was updated successfully, but these errors were encountered:
No branches or pull requests
take the following object
and I have two instances
what modifiers do I need to add so that Struct.slice ignores order?
What if I have a parent struct
and
anotherSlice
requires strict order butchild.slice
does not?The text was updated successfully, but these errors were encountered: