本文整理匯總了C#中at.jku.ssw.Coco.CharSet.Subtract方法的典型用法代碼示例。如果您正苦於以下問題:C# CharSet.Subtract方法的具體用法?C# CharSet.Subtract怎麽用?C# CharSet.Subtract使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類at.jku.ssw.Coco.CharSet
的用法示例。
在下文中一共展示了CharSet.Subtract方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Set
void Set(
#line 218 "Coco.atg" //SOURCE beg=9237,len=13,col=5
out CharSet s
#line default //END SOURCE
) {
#line 218 "Coco.atg" //SOURCE beg=9268,len=12,col=36
CharSet s2;
#line default //END SOURCE
SimSet(
#line 220 "Coco.atg" //SOURCE beg=9296,len=5,col=10
out s
#line default //END SOURCE
);
while (la.kind == 21 || la.kind == 22) {
if (la.kind == 21) {
Get();
SimSet(
#line 221 "Coco.atg" //SOURCE beg=9319,len=6,col=16
out s2
#line default //END SOURCE
);
#line 221 "Coco.atg" //SOURCE beg=9339,len=10,col=36
s.Or(s2);
#line default //END SOURCE
} else {
Get();
SimSet(
#line 222 "Coco.atg" //SOURCE beg=9368,len=6,col=16
out s2
#line default //END SOURCE
);
#line 222 "Coco.atg" //SOURCE beg=9388,len=16,col=36
s.Subtract(s2);
#line default //END SOURCE
}
}
}
示例2: Set
void Set(out CharSet s)
{
CharSet s2;
SimSet(out s);
while (la.kind == 25 || la.kind == 26) {
if (la.kind == 25) {
Get();
SimSet(out s2);
s.Or(s2);
} else {
Get();
SimSet(out s2);
s.Subtract(s2);
}
}
}
示例3: ParseSet
void ParseSet(out CharSet s)
{
CharSet s2;
ParseSimSet(out s);
while (la.kind == 22 || la.kind == 23) {
if (la.kind == 22) {
Get();
ParseSimSet(out s2);
s.Or(s2);
} else {
Get();
ParseSimSet(out s2);
s.Subtract(s2);
}
}
}