-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add Mutable View for Struct Elements #84
Merged
Merged
Commits on Oct 23, 2023
-
Add Mutable View for Struct Elements
Adds a MutableStructFields interface which represents an iterable sequence of mutable fields that can be used to construct a StructElement.
tcostigl committedOct 23, 2023 Configuration menu - View commit details
-
Copy full SHA for 70894f0 - Browse repository at this point
Copy the full SHA 70894f0View commit details
Commits on Nov 2, 2023
-
Update src/com/amazon/ionelement/api/MutableStructFields.kt
Co-authored-by: Matthew Pope <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cdbcc98 - Browse repository at this point
Copy the full SHA cdbcc98View commit details
Commits on Nov 22, 2023
-
* Change `mutableStructFields` from property to method * Remove `copy` StructElement, method 6can be added later * Added `update` StructElement, method
Tom Costigliola committedNov 22, 2023 Configuration menu - View commit details
-
Copy full SHA for a1d3f90 - Browse repository at this point
Copy the full SHA a1d3f90View commit details
Commits on Dec 6, 2023
-
Change MutableStructFields to Implement MutableCollection
Implementing MutableCollection instead of Iterator will allow extra functionality built into MutableCollection. To simplify implementing `iterator()` on MutableStructFields the internal backing field was also changed to MutableMap<String, MutableList<StructField>> at the expense of slightly more overhead because the underlying struct's field name is stored in the map key as well as value. This can be optimized in the future if desired.
Tom Costigliola committedDec 6, 2023 Configuration menu - View commit details
-
Copy full SHA for 5d5c0f3 - Browse repository at this point
Copy the full SHA 5d5c0f3View commit details -
Tom Costigliola committed
Dec 6, 2023 Configuration menu - View commit details
-
Copy full SHA for 56b71f3 - Browse repository at this point
Copy the full SHA 56b71f3View commit details -
Tom Costigliola committed
Dec 6, 2023 Configuration menu - View commit details
-
Copy full SHA for 35fa210 - Browse repository at this point
Copy the full SHA 35fa210View commit details -
Tom Costigliola committed
Dec 6, 2023 Configuration menu - View commit details
-
Copy full SHA for 8d00943 - Browse repository at this point
Copy the full SHA 8d00943View commit details
Commits on Dec 7, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ecc1b95 - Browse repository at this point
Copy the full SHA ecc1b95View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.