Skip to content

Commit

Permalink
more version switches
Browse files Browse the repository at this point in the history
  • Loading branch information
LinqLover authored Dec 16, 2023
1 parent bb26521 commit 80939cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Collections/Collections.tex
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,8 @@ \section{Examples of key classes}
Array newFrom: #(7 3 1 3) --> #(7 3 1 3)
OrderedCollection newFrom: #(7 3 1 3) --> an OrderedCollection(7 3 1 3)
SortedCollection newFrom: #(7 3 1 3) --> a SortedCollection(1 3 3 7)
Set newFrom: #(7 3 1 3) --> a Set(7 1 3)
Bag newFrom: #(7 3 1 3) --> a Bag(7 1 3 3)
Set newFrom: #(7 3 1 3) --> !\SqVersionSwitch{6.1}{a Set(1 3 7)}{a Set(7 1 3)}!
Bag newFrom: #(7 3 1 3) --> !\SqVersionSwitch{6.1}{a Bag(1->1 3->2 7->1)}{a Bag(7 1 3 3)}!
Dictionary newFrom: {1 -> 7 . 2 -> 3 . 3 -> 1 . 4 -> 3} --> a Dictionary(1->7 2->3 3->1 4->3 )
\end{code}
\noindent
Expand Down

0 comments on commit 80939cf

Please sign in to comment.