-
Notifications
You must be signed in to change notification settings - Fork 337
XML and JSON function work #14884
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
Open
jdunkerley
wants to merge
34
commits into
develop
Choose a base branch
from
wip/jd/xml-json-work
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,260
−495
Open
XML and JSON function work #14884
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
235f114
Hashset work.
jdunkerley c923939
Dictionary conversions.
jdunkerley ec66349
Sort to_text, to_display_text and pretty for Hashset and Dictionary.
jdunkerley 7418e27
Sort Table viz for Hashset.
jdunkerley 4d518c3
Make JsonOperation have an instance for VIZ use and separate the Tabl…
jdunkerley f4d8715
Fixes.
jdunkerley 41b5f51
Add `json_stringify` to `Any` and `Column`.
jdunkerley 701ae2b
JSON format.
jdunkerley 2d9be40
Fix copy paste bug.
jdunkerley c61d812
Make Hashset.Value private and remove unused comparator.
jdunkerley 42cf168
Tests part 1
jdunkerley ff6ae8e
Fix for Column.json_stringify and tests.
jdunkerley bd0e82d
Docs.
jdunkerley 3b83b73
Changelog.
jdunkerley da0baf7
Copy/paste error.
jdunkerley 93e2ac2
Docs and lint fixes.
jdunkerley 72c793e
Refactor so JsonOperation implements UnaryOperation and separate all …
jdunkerley 9d5c35e
Java format.
jdunkerley 5bdfbe5
Fixes and prototype for parse_json via map
jdunkerley b12bf2d
Start of the parse_json for a Column.
jdunkerley d6f9d9a
Add support for Array in the JSON read.
jdunkerley a3aa433
Support for the JSON objects.
jdunkerley 9816186
Add `parse_json` to the `Table`.
jdunkerley fc89007
Java format.
jdunkerley 674dfc8
Fixes and Docs.
jdunkerley 45f9bdf
XML_Document to XML_Element conversion.
jdunkerley 3c86a4d
Add `get_xpath_text` to `XML_Element` and `XML_Document`.
jdunkerley d193a5d
Remove `Any.json_stringify`
jdunkerley 0279923
Remove `Any.json_stringify` docs.
jdunkerley 12d8f7b
Move XML code to Java
jdunkerley 3b0fb07
Complete moving XML code to Java
jdunkerley 85a25db
Remove ToDo.
jdunkerley 4b33b8e
Docs.
jdunkerley 73c8043
Default arguments.
jdunkerley File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
distribution/lib/Standard/Base/0.0.0-dev/docs/api/Data/Hashset.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,21 @@ | ||
| ## Enso Signatures 1.0 | ||
| ## module Standard.Base.Data.Hashset | ||
| - type Hashset | ||
| - Value underlying_dictionary:(Standard.Base.Data.Dictionary.Dictionary Standard.Base.Any.Any Standard.Base.Nothing.Nothing) | ||
| - contains self value:Standard.Base.Any.Any -> Standard.Base.Any.Any | ||
| - contains_relational self value:Standard.Base.Any.Any -> Standard.Base.Any.Any | ||
| - difference self other:Standard.Base.Data.Hashset.Hashset -> Standard.Base.Any.Any | ||
| - empty -> Standard.Base.Any.Any | ||
| - from_vector vector:Standard.Base.Data.Vector.Vector error_on_duplicates:Standard.Base.Data.Boolean.Boolean= -> Standard.Base.Any.Any | ||
| - insert self value:Standard.Base.Any.Any -> Standard.Base.Any.Any | ||
| - from_vector values:Standard.Base.Data.Vector.Vector error_on_duplicates:Standard.Base.Data.Boolean.Boolean= -> Standard.Base.Data.Hashset.Hashset!Standard.Base.Errors.Illegal_Argument.Illegal_Argument | ||
| - insert self value:Standard.Base.Any.Any -> Standard.Base.Data.Hashset.Hashset | ||
| - intersection self other:Standard.Base.Data.Hashset.Hashset -> Standard.Base.Any.Any | ||
| - is_empty self -> Standard.Base.Any.Any | ||
| - length self -> Standard.Base.Any.Any | ||
| - not_empty self -> Standard.Base.Any.Any | ||
| - pretty self -> Standard.Base.Any.Any | ||
| - size self -> Standard.Base.Any.Any | ||
| - to_display_text self -> Standard.Base.Any.Any | ||
| - to_text self -> Standard.Base.Any.Any | ||
| - to_vector self -> Standard.Base.Any.Any | ||
| - union self other:Standard.Base.Data.Hashset.Hashset -> Standard.Base.Any.Any | ||
| - type Hashset_Comparator | ||
| - compare x:Standard.Base.Any.Any y:Standard.Base.Any.Any -> Standard.Base.Any.Any | ||
| - hash x:Standard.Base.Any.Any -> Standard.Base.Any.Any | ||
| - Standard.Base.Data.Hashset.Hashset.from that:Standard.Base.Data.Vector.Vector error_on_duplicates:Standard.Base.Data.Boolean.Boolean= -> Standard.Base.Data.Hashset.Hashset | ||
| - Standard.Base.Data.Vector.Vector.from that:Standard.Base.Data.Hashset.Hashset -> Standard.Base.Data.Vector.Vector |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.