@@ -115,8 +115,8 @@ Equivalent to L«infix:<(-)>».
115
115
multi sub infix:<(^)>(Any $a, Any $b --> Setty)
116
116
multi sub infix:<(^)>(Set $a, Set $b --> Setty)
117
117
118
- Returns the C < Set > made up of all the elements that $a has but $b
119
- doesn't and all the elements $b has but $a doesn't. Equivalent to
118
+ Returns the C < Set > made up of all the elements that C < $a > has but C < $b >
119
+ doesn't and all the elements C < $b > has but C < $a > doesn't. Equivalent to
120
120
C < ($a ∖ $b) ∪ ($b ∖ $a) > .
121
121
122
122
= head2 infix:<⊖>
@@ -125,28 +125,86 @@ C<($a ∖ $b) ∪ ($b ∖ $a)>.
125
125
126
126
Equivalent to L « infix:<(^)> »
127
127
128
- = head2 infix:<(<=)>
128
+ = head2 infix:<<(<=)>>
129
+
130
+ multi sub infix:<<(<=)>>(Any $a, Any $b --> Bool)
131
+ multi sub infix:<<(<=)>>(Setty $a, Setty $b --> Bool)
132
+
133
+ Returns C < True > if C < $a > is a subset or is equal to C < $b > , i.e., if all the
134
+ elements of C < $a > are elements of C < $b > , and C < $a > is a smaller or equal
135
+ sized set than C < $b > .
129
136
130
137
= head2 infix:<⊆>
131
138
139
+ only sub infix:<<"\x2286">>($a, $b --> Bool)
140
+
141
+ Equivalent to L « infix:<(<=)> » .
142
+
132
143
= head2 infix:<⊈>
133
144
134
- = head2 infix:<(<)>
145
+ only sub infix:<<"\x2288">>($a, $b --> Bool)
146
+
147
+ Equivalent to C « !(<=) » .
148
+
149
+ = head2 infix:<<(<)>>
150
+
151
+ multi sub infix:<<(<)>>(Any $a, Any $b --> Bool)
152
+ multi sub infix:<<(<)>>(Setty $a, Setty $b --> Bool)
153
+
154
+ Returns C < True > if C < $a > is a strict subset of C < $b > , i.e., that all the
155
+ elements of C < $a > are elements of C < $b > , but C < $a > is a smaller set than
156
+ C < $b > .
135
157
136
158
= head2 infix:<⊂>
137
159
160
+ only sub infix:<<"\x2282">>($a, $b --> Bool)
161
+
162
+ Equivalent to L « infix:<<(<)>> » .
163
+
138
164
= head2 infix:<⊄>
139
165
166
+ only sub infix:<<"\x2284">>($a, $b --> Bool)
167
+
168
+ Equivalent to C « !(<) » .
169
+
140
170
= head2 infix:<(>=)>
141
171
172
+ multi sub infix:<<(>=)>>(Any $a, Any $b --> Bool)
173
+ multi sub infix:<<(>=)>>(Setty $a, Setty $b --> Bool)
174
+
175
+ Like L « infix:<(<=)> » with reversed arguments. Returns C < True > if C < $b >
176
+ is a subset of or equal to C < $a > .
177
+
142
178
= head2 infix:<⊇>
143
179
180
+ only sub infix:<<"\x2287">>($a, $b --> Bool)
181
+
182
+ Equivalent to L « infix:<<(>=)>> » .
183
+
144
184
= head2 infix:<⊉>
145
185
146
- = head2 infix:<(>)>
186
+ only sub infix:<<"\x2289">>($a, $b --> Bool)
187
+
188
+ Equivalent to C « !(>=) » .
189
+
190
+ = head2 infix:<<(>)>>
191
+
192
+ multi sub infix:<<(>)>>(Any $a, Any $b --> Bool)
193
+ multi sub infix:<<(>)>>(Setty $a, Setty $b --> Bool)
194
+
195
+ Like L « infix:<(<)> » with reversed arguments. Returns C < True > if C < $b >
196
+ is a strict subset of C < $a > .
147
197
148
198
= head2 infix:<⊃>
149
199
200
+ only sub infix:<<"\x2283">>($a, $b --> Bool)
201
+
202
+ Equivalent to L « infix:<<(>)>> » .
203
+
150
204
= head2 infix:<⊅>
151
205
206
+ only sub infix:<<"\x2285">>($a, $b --> Bool)
207
+
208
+ Equivalent to C « !(>) » .
209
+
152
210
= end pod
0 commit comments