@@ -89,7 +89,7 @@ L<Set Theory|https://en.wikipedia.org/wiki/Set_theory>.
89
89
90
90
These infixes can be written using the Unicode character that represents the
91
91
function (like C < ∈ > or C < ∪ > ), or with an equivalent ASCII version (like
92
- C < (elem) > or <(|)>.
92
+ C < (elem) > or C < (|) > ) .
93
93
94
94
So explicitly using C < Set > (or C < Bag > or C < Mix > ) objects with these infixes
95
95
is unnecessary. All set operators work with all possible arguments. If
@@ -104,73 +104,73 @@ C<Bag> if both types happen to be used).
104
104
105
105
= head3 infix (elem), infix ∈
106
106
107
- Returns C < True > if C < $a > is an B < element > of C < $b > , else False.
107
+ Returns C < True > if C < $a > is an B < element > of C < $b > , else C < False > .
108
108
L < More information|/language/operators#infix_(elem),_infix_∈ > ,
109
109
L < Wikipedia definition|https://en.wikipedia.org/wiki/Element_(mathematics)#Notation_and_terminology > .
110
110
111
111
= head3 infix ∉
112
112
113
- Returns C < True > if C < $a > is B < not > an element of C < $b > , else False.
113
+ Returns C < True > if C < $a > is B < not > an element of C < $b > , else C < False > .
114
114
L < More information|/language/operators#infix_∉ > ,
115
115
L < Wikipedia definition|https://en.wikipedia.org/wiki/Element_(mathematics)#Notation_and_terminology > .
116
116
117
117
= head3 infix (cont), infix ∋
118
118
119
- Returns C < True > if C < $a > B < contains > C < $b > as an element, else False.
119
+ Returns C < True > if C < $a > B < contains > C < $b > as an element, else C < False > .
120
120
L < More information|/language/operators#infix_(cont),_infix_∋ > ,
121
121
L < Wikipedia definition|https://en.wikipedia.org/wiki/Element_(mathematics)#Notation_and_terminology > .
122
122
123
123
= head3 infix ∌
124
124
125
- Returns C < True > if C < $a > does B < not > contain C < $b > , else False.
125
+ Returns C < True > if C < $a > does B < not > contain C < $b > , else C < False > .
126
126
L < More information|/language/operators#infix_∌ > ,
127
127
L < Wikipedia definition|https://en.wikipedia.org/wiki/Element_(mathematics)#Notation_and_terminology > .
128
128
129
129
= head3 infix (<=), infix ⊆
130
130
131
- Returns C < True > if C < $a > is a B < subset > or is equal to C < $b > , else False.
131
+ Returns C < True > if C < $a > is a B < subset > or is equal to C < $b > , else C < False > .
132
132
L < More information|/language/operators#infix_(<=),_infix_⊆>,
133
133
L < Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions > .
134
134
135
135
= head3 infix ⊈
136
136
137
- Returns C < True > if C < $a > is B < not > a B < subset > nor equal to C < $b > , else False.
137
+ Returns C < True > if C < $a > is B < not > a B < subset > nor equal to C < $b > , else C < False > .
138
138
L < More information|/language/operators#infix_⊈ > ,
139
139
L < Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions > .
140
140
141
141
= head3 infix (<), infix ⊂
142
142
143
- Returns C < True > if C < $a > is a B < strict subset > of C < $b > , else False.
143
+ Returns C < True > if C < $a > is a B < strict subset > of C < $b > , else C < False > .
144
144
L < More information|/language/operators#infix_(<),_infix_⊂>,
145
145
L < Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions > .
146
146
147
147
= head3 infix ⊄
148
148
149
- Returns C < True > if C < $a > is B < not > a B < strict subset > of C < $b > , else False.
149
+ Returns C < True > if C < $a > is B < not > a B < strict subset > of C < $b > , else C < False > .
150
150
L < More information|/language/operators#infix_⊄ > ,
151
151
L < Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions > .
152
152
153
153
= head3 infix (>=), infix ⊇
154
154
155
- Returns C < True > if C < $a > is a B < superset > of or equal to C < $b > , else False.
155
+ Returns C < True > if C < $a > is a B < superset > of or equal to C < $b > , else C < False > .
156
156
L « More information|/language/operators#infix_(>=),_infix_⊇ » ,
157
157
L < Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions > .
158
158
159
159
= head3 infix ⊉
160
160
161
- Returns C < True > if C < $a > is B < not > a B < superset > nor equal to C < $b > , else False.
161
+ Returns C < True > if C < $a > is B < not > a B < superset > nor equal to C < $b > , else C < False > .
162
162
L < More information|/language/operators#infix_⊉ > ,
163
163
L < Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions > .
164
164
165
165
= head3 infix (>), infix ⊃
166
166
167
- Returns C < True > if C < $a > is a B < strict superset > of C < $b > , else False.
167
+ Returns C < True > if C < $a > is a B < strict superset > of C < $b > , else C < False > .
168
168
L « More information|/language/operators#infix_(>),_infix_⊃ » ,
169
169
L < Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions > .
170
170
171
171
= head3 infix ⊅
172
172
173
- Returns C < True > if C < $a > is B < not > a B < strict superset > of C < $b > , else False.
173
+ Returns C < True > if C < $a > is B < not > a B < strict superset > of C < $b > , else C < False > .
174
174
L < More information|/language/operators#infix_⊅ > ,
175
175
L < Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions > .
176
176
0 commit comments