Skip to content

Commit 44c5963

Browse files
committed
Place C<> around operator and types
1 parent 1cf3cfa commit 44c5963

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

doc/Language/setbagmix.pod6

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ L<Set Theory|https://en.wikipedia.org/wiki/Set_theory>.
8989
9090
These infixes can be written using the Unicode character that represents the
9191
function (like C<> or C<>), or with an equivalent ASCII version (like
92-
C<(elem)> or <(|)>.
92+
C<(elem)> or C<(|)>).
9393
9494
So explicitly using C<Set> (or C<Bag> or C<Mix>) objects with these infixes
9595
is unnecessary. All set operators work with all possible arguments. If
@@ -104,73 +104,73 @@ C<Bag> if both types happen to be used).
104104
105105
=head3 infix (elem), infix ∈
106106
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>.
108108
L<More information|/language/operators#infix_(elem),_infix_∈>,
109109
L<Wikipedia definition|https://en.wikipedia.org/wiki/Element_(mathematics)#Notation_and_terminology>.
110110
111111
=head3 infix ∉
112112
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>.
114114
L<More information|/language/operators#infix_∉>,
115115
L<Wikipedia definition|https://en.wikipedia.org/wiki/Element_(mathematics)#Notation_and_terminology>.
116116
117117
=head3 infix (cont), infix ∋
118118
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>.
120120
L<More information|/language/operators#infix_(cont),_infix_∋>,
121121
L<Wikipedia definition|https://en.wikipedia.org/wiki/Element_(mathematics)#Notation_and_terminology>.
122122
123123
=head3 infix ∌
124124
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>.
126126
L<More information|/language/operators#infix_∌>,
127127
L<Wikipedia definition|https://en.wikipedia.org/wiki/Element_(mathematics)#Notation_and_terminology>.
128128
129129
=head3 infix (<=), infix ⊆
130130
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>.
132132
L<More information|/language/operators#infix_(<=),_infix_⊆>,
133133
L<Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions>.
134134
135135
=head3 infix ⊈
136136
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>.
138138
L<More information|/language/operators#infix_⊈>,
139139
L<Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions>.
140140
141141
=head3 infix (<), infix ⊂
142142
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>.
144144
L<More information|/language/operators#infix_(<),_infix_⊂>,
145145
L<Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions>.
146146
147147
=head3 infix ⊄
148148
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>.
150150
L<More information|/language/operators#infix_⊄>,
151151
L<Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions>.
152152
153153
=head3 infix (>=), infix ⊇
154154
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>.
156156
L«More information|/language/operators#infix_(>=),_infix_⊇»,
157157
L<Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions>.
158158
159159
=head3 infix ⊉
160160
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>.
162162
L<More information|/language/operators#infix_⊉>,
163163
L<Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions>.
164164
165165
=head3 infix (>), infix ⊃
166166
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>.
168168
L«More information|/language/operators#infix_(>),_infix_⊃»,
169169
L<Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions>.
170170
171171
=head3 infix ⊅
172172
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>.
174174
L<More information|/language/operators#infix_⊅>,
175175
L<Wikipedia definition|https://en.wikipedia.org/wiki/Subset#Definitions>.
176176

0 commit comments

Comments
 (0)