File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -149,21 +149,21 @@ Some examples of the various set differences below
149149
150150 set or difference value
151151
152- $a (a b c d e _ _ _ _ _ )
153- $b (_ _ _ c d e f g _ _)
154- $c (_ _ _ _ _ e f g h i)
152+ $a (a b c d e _ _ _ _)
153+ $b (_ _ c d e f g _ _)
154+ $c (_ _ _ _ e f g h i)
155155
156- $a->difference($b) (a b _ _ _ _ _ _ _ _ )
157- $a->symmetric_difference($b) (a b _ _ _ _ f g _ _)
158- $a->unique($b) (a b _ _ _ _ f g _ _)
156+ $a->difference($b) (a b _ _ _ _ _ _ _)
157+ $a->symmetric_difference($b) (a b _ _ _ f g _ _)
158+ $a->unique($b) (a b _ _ _ f g _ _)
159159
160- $b->difference($a) (_ _ _ _ _ _ f g _ _)
161- $b->symmetric_difference($a) (a b _ _ _ _ f g _ _)
162- $b->unique($a) (a b _ _ _ _ f g _ _)
160+ $b->difference($a) (_ _ _ _ _ f g _ _)
161+ $b->symmetric_difference($a) (a b _ _ _ f g _ _)
162+ $b->unique($a) (a b _ _ _ f g _ _)
163163
164- $a->difference($b, $c) (a b _ _ _ _ _ _ _ _ )
165- $a->symmetric_difference($b, $c) (a b _ _ e _ _ _ h i)
166- $a->unique($b, $c) (a b _ _ _ _ _ _ h i)
164+ $a->difference($b, $c) (a b _ _ _ _ _ _ _)
165+ $a->symmetric_difference($b, $c) (a b _ _ e _ _ h i)
166+ $a->unique($b, $c) (a b _ _ _ _ _ h i)
167167
168168=head2 Comparing
169169
You can’t perform that action at this time.
0 commit comments