-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update operators section for structure addition
- Loading branch information
1 parent
e529cab
commit 4aa621c
Showing
3 changed files
with
47 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -6,6 +6,8 @@ README.pdf | |
*.old | ||
*.out | ||
|
||
*.output.idf | ||
|
||
doc/doc.md | ||
doc/doc.pdf | ||
|
||
|
This file contains 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
original_struct = { | ||
'key': 'value', | ||
'second key': 10 | ||
} | ||
|
||
updated_struct = original_struct + { 'other key': 'passed along', 'second key': 20 } | ||
|
||
# This isn't a valid Version object, but go along with it. | ||
Version, | ||
<updated_struct.'key'>, | ||
<updated_struct.'second key'>, | ||
<updated_struct.'other key'>; |
This file contains 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